ES|QL: Set default query LIMIT to 1000 (#105618)

This commit is contained in:
Luigi Dell'Aquila 2024-02-21 09:25:25 +01:00 committed by GitHub
parent 7cbdb6cc19
commit f06a580eb7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 218 additions and 213 deletions

View file

@ -26,7 +26,7 @@ corresponds to a field, and can be accessed by the name of that field.
[NOTE]
====
By default, an {esql} query without an explicit <<esql-limit>> uses an implicit
limit of 500. This applies to `FROM` too. A `FROM` command without `LIMIT`:
limit of 1000. This applies to `FROM` too. A `FROM` command without `LIMIT`:
[source,esql]
----
@ -38,7 +38,7 @@ is executed as:
[source,esql]
----
FROM employees
| LIMIT 500
| LIMIT 1000
----
====