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
4 changes: 0 additions & 4 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -549,10 +549,6 @@ tests:
- class: org.elasticsearch.xpack.cluster.routing.allocation.DataTierAllocationDeciderIT
method: testShardsAreKeptInPreferredTierUntilTheNextTierIsInItsFinalState
issue: https://github.com/elastic/elasticsearch/issues/134050
- class: org.elasticsearch.xpack.esql.expression.function.aggregate.ValuesTests
issue: https://github.com/elastic/elasticsearch/issues/134072
- class: org.elasticsearch.xpack.esql.expression.function.aggregate.SampleTests
issue: https://github.com/elastic/elasticsearch/issues/134072

# Examples:
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ protected static String standardAggregatorName(String prefix, DataType type) {
case DOUBLE, COUNTER_DOUBLE -> "Double";
case INTEGER, COUNTER_INTEGER -> "Int";
case IP -> "Ip";
case DATETIME, DATE_NANOS, LONG, COUNTER_LONG, UNSIGNED_LONG -> "Long";
case DATETIME, DATE_NANOS, LONG, COUNTER_LONG, UNSIGNED_LONG, GEOHASH, GEOTILE, GEOHEX -> "Long";
case NULL -> "Null";
default -> throw new UnsupportedOperationException("name for [" + type + "]");
};
Expand Down