Skip to content

Commit c44fb21

Browse files
committed
Spotless
1 parent 9adedda commit c44fb21

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/AbstractAggregationTestCase.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,8 @@ protected static String standardAggregatorName(String prefix, DataType type) {
535535
case DOUBLE, COUNTER_DOUBLE -> "Double";
536536
case INTEGER, COUNTER_INTEGER -> "Int";
537537
case IP -> "Ip";
538-
case DATETIME, DATE_NANOS, LONG, COUNTER_LONG, UNSIGNED_LONG, GEOHASH, GEOTILE, GEOHEX -> "Long"; case NULL -> "Null";
538+
case DATETIME, DATE_NANOS, LONG, COUNTER_LONG, UNSIGNED_LONG, GEOHASH, GEOTILE, GEOHEX -> "Long";
539+
case NULL -> "Null";
539540
default -> throw new UnsupportedOperationException("name for [" + type + "]");
540541
};
541542
return prefix + typeName;

0 commit comments

Comments
 (0)