We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2a9a9e commit 4e3136aCopy full SHA for 4e3136a
x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/10_basic.yml
@@ -237,7 +237,10 @@ FROM EVAL SORT LIMIT with documents_found:
237
query: 'from test | eval x = count + 7 | sort x | limit 1'
238
239
- match: {documents_found: 40}
240
- - match: {values_loaded: 65}
+ # We can't be sure quite how many values we'll load. It's at least
241
+ # one per document in the index. And one per top document. But we
242
+ # might load more values because we run in more threads.
243
+ - gte: {values_loaded: 45}
244
- match: {columns.0.name: "color"}
245
- match: {columns.1.name: "count"}
246
- match: {columns.2.name: "count_d"}
0 commit comments