Skip to content

Commit 8fd629f

Browse files
ioanatianik9000
andauthored
ESQL: Unmute test (#127065) (#130689)
It was assuming a simpler execution model. This weakens the assertion to one that should always pass. Closes #127046 Closes #127039 Closes #127090 Closes #127080 Co-authored-by: Nik Everett <[email protected]>
1 parent fb2990f commit 8fd629f

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql

1 file changed

+2
-2
lines changed

x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/10_basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ basic with documents_found:
197197
query: 'from test | keep data | sort data | limit 2'
198198
columnar: true
199199

200-
- match: {documents_found: 10} # two documents per shard
201-
- match: {values_loaded: 10} # one per document
200+
- gte: {documents_found: 2} # we might early terminate, so the most we can assume is >=2
201+
- gte: {values_loaded: 2} # same as above
202202
- match: {columns.0.name: "data"}
203203
- match: {columns.0.type: "long"}
204204
- match: {values.0: [1, 1]}

0 commit comments

Comments
 (0)