Skip to content

Commit c48a84c

Browse files
ES|QL: reduce mute scope for Mixed Cluster tests (#117822)
1 parent 5fab2cf commit c48a84c

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

muted-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,6 @@ tests:
403403
- class: "org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT"
404404
method: "test {scoring.*}"
405405
issue: https://github.com/elastic/elasticsearch/issues/117641
406-
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT
407-
issue: https://github.com/elastic/elasticsearch/issues/117784
408406
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
409407
method: test {scoring.QstrWithFieldAndScoringSortedEval}
410408
issue: https://github.com/elastic/elasticsearch/issues/117751

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ h:d | languages:i
522522
1.41 | null
523523
;
524524

525-
groupByAlias
525+
groupByAlias#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117770]
526526
from employees | rename languages as l | keep l, height | stats m = min(height) by l | sort l;
527527

528528
m:d | l:i
@@ -951,7 +951,7 @@ c:l
951951
49
952952
;
953953

954-
countFieldWithGrouping
954+
countFieldWithGrouping#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
955955
from employees | rename languages as l | where emp_no < 10050 | stats c = count(emp_no) by l | sort l;
956956

957957
c:l | l:i
@@ -963,7 +963,7 @@ c:l | l:i
963963
10 | null
964964
;
965965

966-
countFieldWithAliasWithGrouping
966+
countFieldWithAliasWithGrouping#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
967967
from employees | rename languages as l | eval e = emp_no | where emp_no < 10050 | stats c = count(e) by l | sort l;
968968

969969
c:l | l:i
@@ -982,7 +982,7 @@ c:l
982982
49
983983
;
984984

985-
countEvalExpWithGrouping
985+
countEvalExpWithGrouping#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
986986
from employees | rename languages as l | eval e = case(emp_no < 10050, emp_no, null) | stats c = count(e) by l | sort l;
987987

988988
c:l | l:i

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ id:i |name:s |version:v |o:v
159159
13 |lllll |null |null
160160
;
161161

162-
countVersion
162+
countVersion#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
163163
FROM apps | RENAME name AS k | STATS v = COUNT(version) BY k | SORT k;
164164

165165
v:l | k:s

0 commit comments

Comments
 (0)