File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
x-pack/plugin/esql/qa/testFixtures/src/main/resources Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ h:d | languages:i
5225221.41 | null
523523;
524524
525- groupByAlias
525+ groupByAlias#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117770]
526526from employees | rename languages as l | keep l, height | stats m = min(height) by l | sort l;
527527
528528m:d | l:i
95195149
952952;
953953
954- countFieldWithGrouping
954+ countFieldWithGrouping#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
955955from employees | rename languages as l | where emp_no < 10050 | stats c = count(emp_no) by l | sort l;
956956
957957c:l | l:i
@@ -963,7 +963,7 @@ c:l | l:i
96396310 | null
964964;
965965
966- countFieldWithAliasWithGrouping
966+ countFieldWithAliasWithGrouping#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
967967from employees | rename languages as l | eval e = emp_no | where emp_no < 10050 | stats c = count(e) by l | sort l;
968968
969969c:l | l:i
98298249
983983;
984984
985- countEvalExpWithGrouping
985+ countEvalExpWithGrouping#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
986986from employees | rename languages as l | eval e = case(emp_no < 10050, emp_no, null) | stats c = count(e) by l | sort l;
987987
988988c:l | l:i
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ id:i |name:s |version:v |o:v
15915913 |lllll |null |null
160160;
161161
162- countVersion
162+ countVersion#[skip:-8.13.99,reason:muted, see https://github.com/elastic/elasticsearch/issues/117784]
163163FROM apps | RENAME name AS k | STATS v = COUNT(version) BY k | SORT k;
164164
165165v:l | k:s
You can’t perform that action at this time.
0 commit comments