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
30 changes: 0 additions & 30 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -404,18 +404,6 @@ tests:
- class: org.elasticsearch.xpack.sql.qa.jdbc.single_node.SingleNodeJdbcResultSetIT
method: testGettingValidLongWithoutCasting
issue: https://github.com/elastic/elasticsearch/issues/145580
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testReplaceChildren {class org.elasticsearch.xpack.esql.plan.physical.MergeExec}
issue: https://github.com/elastic/elasticsearch/issues/145581
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testReplaceChildren {class org.elasticsearch.xpack.esql.plan.logical.Filter}
issue: https://github.com/elastic/elasticsearch/issues/145583
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testTransform {class org.elasticsearch.xpack.esql.plan.physical.ExchangeSinkExec}
issue: https://github.com/elastic/elasticsearch/issues/145584
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testTransform {class org.elasticsearch.xpack.esql.plan.physical.ExchangeExec}
issue: https://github.com/elastic/elasticsearch/issues/145585
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately, it looks like more mutes were introduced in meanwhile.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could maybe be solved in a follow-up? I think we'll get more and more mutes until this is in :)

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've updated a few and will now hold off until this is in, then update the rest.

- class: org.elasticsearch.xpack.esql.CsvTests
method: test {csv-spec:stats_percentile.percentileOfLong}
issue: https://github.com/elastic/elasticsearch/issues/145589
Expand All @@ -425,27 +413,9 @@ tests:
- class: org.elasticsearch.xpack.sql.qa.jdbc.single_node.SingleNodeJdbcFetchSizeIT
method: testScrollWithDatetimeAndTimezoneParam
issue: https://github.com/elastic/elasticsearch/issues/145592
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testReplaceChildren {class org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin}
issue: https://github.com/elastic/elasticsearch/issues/145594
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testTransform {class org.elasticsearch.xpack.esql.plan.logical.Dissect}
issue: https://github.com/elastic/elasticsearch/issues/145595
- class: org.elasticsearch.xpack.esql.plan.logical.CommandLicenseTests
method: testLicenseCheck
issue: https://github.com/elastic/elasticsearch/issues/145600
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testTransform {class org.elasticsearch.xpack.esql.plan.logical.local.ResolvingProject}
issue: https://github.com/elastic/elasticsearch/issues/145601
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testReplaceChildren {class org.elasticsearch.xpack.esql.plan.logical.promql.PromqlCommand}
issue: https://github.com/elastic/elasticsearch/issues/145603
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testReplaceChildren {class org.elasticsearch.xpack.esql.plan.logical.local.ResolvingProject}
issue: https://github.com/elastic/elasticsearch/issues/145604
- class: org.elasticsearch.xpack.esql.tree.EsqlNodeSubclassTests
method: testTransform {class org.elasticsearch.xpack.esql.plan.physical.MergeExec}
issue: https://github.com/elastic/elasticsearch/issues/145606
- class: org.elasticsearch.indices.IndexingMemoryControllerIT
method: testDeletesAloneCanTriggerRefresh
issue: https://github.com/elastic/elasticsearch/issues/145609
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ public List<Attribute> output() {
if (grouping == Grouping.WITHOUT) {
return List.of(timeseriesAttribute);
}
assert expressionsResolved() : "output() called on unresolved plan";
return groupings.stream().filter(a -> a.dataType() != DataType.NULL).toList();
return groupings.stream().filter(a -> a.resolved() == false || a.dataType() != DataType.NULL).toList();
}

@Override
Expand Down
Loading