Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,12 +342,6 @@ tests:
- class: org.elasticsearch.xpack.ilm.DataStreamAndIndexLifecycleMixingTests
method: testUpdateIndexTemplateToDataStreamLifecyclePreference
issue: https://github.com/elastic/elasticsearch/issues/124837
- class: org.elasticsearch.xpack.esql.optimizer.rules.logical.PropagateInlineEvalsTests
method: testGroupingAliasingMoved_To_LeftSideOfJoin
issue: https://github.com/elastic/elasticsearch/issues/124839
- class: org.elasticsearch.xpack.esql.optimizer.rules.logical.PropagateInlineEvalsTests
method: testGroupingAliasingMoved_To_LeftSideOfJoin_WithExpression
issue: https://github.com/elastic/elasticsearch/issues/124838
- class: org.elasticsearch.datastreams.lifecycle.DataStreamLifecycleServiceIT
method: testAutomaticForceMerge
issue: https://github.com/elastic/elasticsearch/issues/124846
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import org.elasticsearch.index.IndexMode;
import org.elasticsearch.test.ESTestCase;
import org.elasticsearch.xpack.esql.EsqlTestUtils;
import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
import org.elasticsearch.xpack.esql.analysis.Analyzer;
import org.elasticsearch.xpack.esql.analysis.AnalyzerContext;
import org.elasticsearch.xpack.esql.analysis.EnrichResolution;
Expand Down Expand Up @@ -80,6 +81,7 @@ public static void init() {
* \_StubRelation[[emp_no{f}#11, languages{f}#14, gender{f}#13, y{r}#10]]
*/
public void testGroupingAliasingMoved_To_LeftSideOfJoin() {
assumeTrue("Requires INLINESTATS", EsqlCapabilities.Cap.INLINESTATS_V5.isEnabled());
var plan = plan("""
from test
| keep emp_no, languages, gender
Expand Down Expand Up @@ -122,6 +124,7 @@ public void testGroupingAliasingMoved_To_LeftSideOfJoin() {
* {r}#21]]
*/
public void testGroupingAliasingMoved_To_LeftSideOfJoin_WithExpression() {
assumeTrue("Requires INLINESTATS", EsqlCapabilities.Cap.INLINESTATS_V5.isEnabled());
var plan = plan("""
from test
| keep emp_no, languages, gender, last_name, first_name
Expand Down