From edf98389e1681eb4304dfa8ed02c5b57900e0e24 Mon Sep 17 00:00:00 2001 From: carlosdelest Date: Fri, 29 Nov 2024 11:37:40 +0100 Subject: [PATCH] Fix tests ignoring order --- .../qa/testFixtures/src/main/resources/match-function.csv-spec | 2 ++ .../qa/testFixtures/src/main/resources/match-operator.csv-spec | 2 ++ 2 files changed, 4 insertions(+) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec index 3fa0da8c4d5d4..d5bec65e5da3a 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec @@ -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 @@ -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 diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec index 5ddada9c0cb51..8f4a09247948c 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec @@ -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 @@ -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