SQL: [Docs] Fix typo

Add missing closing "`"

Follows: c2e0552537
This commit is contained in:
Marios Trivyzas 2020-02-12 21:50:57 +01:00 committed by Marios Trivyzas
parent 0c1889389a
commit d9fd6fc90c
No known key found for this signature in database
GPG Key ID: 8817B46B0CF36A3F
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ SELECT * FROM test GROUP BY age ORDER BY COUNT(*) LIMIT 100;
It is possible to run the same queries without a `LIMIT` however in that case if the maximum size (*10000*) is passed,
an exception will be returned as {es-sql} is unable to track (and sort) all the results returned.
Moreover, the aggregation(s) used in the `ORDER BY must be only plain aggregate functions. No scalar
Moreover, the aggregation(s) used in the `ORDER BY` must be only plain aggregate functions. No scalar
functions or operators can be used, and therefore no complex columns that combine two ore more aggregate
functions can be used for ordering. Here are some examples of queries that are *not allowed*: