Skip to content

Commit edf9838

Browse files
committed
Fix tests ignoring order
1 parent 8102163 commit edf9838

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ required_capability: match_additional_types
429429
from employees
430430
| where match(emp_no, 10004.0)
431431
| keep emp_no, first_name;
432+
ignoreOrder:true
432433

433434
emp_no:integer | first_name:keyword
434435
10004 | Chirstian
@@ -441,6 +442,7 @@ required_capability: match_additional_types
441442
from employees
442443
| where match(height, 2)
443444
| keep emp_no, height;
445+
ignoreOrder:true
444446

445447
emp_no:integer | height:double
446448
10037 | 2.0

x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,7 @@ required_capability: match_additional_types
449449
from employees
450450
| where emp_no:10004.0
451451
| keep emp_no, first_name;
452+
ignoreOrder:true
452453

453454
emp_no:integer | first_name:keyword
454455
10004 | Chirstian
@@ -461,6 +462,7 @@ required_capability: match_additional_types
461462
from employees
462463
| where height:2
463464
| keep emp_no, height;
465+
ignoreOrder:true
464466

465467
emp_no:integer | height:double
466468
10037 | 2.0

0 commit comments

Comments
 (0)