Skip to content

Commit

Permalink
Fix tests ignoring order
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdelest committed Nov 29, 2024
1 parent 8102163 commit edf9838
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ required_capability: match_additional_types
from employees
| where match(emp_no, 10004.0)
| keep emp_no, first_name;
ignoreOrder:true

emp_no:integer | first_name:keyword
10004 | Chirstian
Expand All @@ -441,6 +442,7 @@ required_capability: match_additional_types
from employees
| where match(height, 2)
| keep emp_no, height;
ignoreOrder:true

emp_no:integer | height:double
10037 | 2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@ required_capability: match_additional_types
from employees
| where emp_no:10004.0
| keep emp_no, first_name;
ignoreOrder:true

emp_no:integer | first_name:keyword
10004 | Chirstian
Expand All @@ -461,6 +462,7 @@ required_capability: match_additional_types
from employees
| where height:2
| keep emp_no, height;
ignoreOrder:true

emp_no:integer | height:double
10037 | 2.0
Expand Down

0 comments on commit edf9838

Please sign in to comment.