Skip to content

Commit e1c43c6

Browse files
committed
spotless
1 parent ee1ebde commit e1c43c6

File tree

3 files changed

+3
-3
lines changed
  • x-pack/plugin/esql

3 files changed

+3
-3
lines changed

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/data/BlockMultiValuedTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static List<Object[]> params() {
4949
|| e == ElementType.NULL
5050
|| e == ElementType.DOC
5151
|| e == ElementType.COMPOSITE
52-
|| e == ElementType.EXPONENTIAL_HISTOGRAM //TODO(b/133393): Enable tests once the block supports lookup
52+
|| e == ElementType.EXPONENTIAL_HISTOGRAM // TODO(b/133393): Enable tests once the block supports lookup
5353
|| e == ElementType.AGGREGATE_METRIC_DOUBLE) {
5454
continue;
5555
}

x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestEsqlIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ public void testSuggestedCast() throws IOException {
669669
shouldBeSupported.remove(DataType.DOC_DATA_TYPE);
670670
shouldBeSupported.remove(DataType.TSID_DATA_TYPE);
671671
shouldBeSupported.remove(DataType.DENSE_VECTOR);
672-
shouldBeSupported.remove(DataType.EXPONENTIAL_HISTOGRAM); //TODO(b/133393): add support when blockloader is implemented
672+
shouldBeSupported.remove(DataType.EXPONENTIAL_HISTOGRAM); // TODO(b/133393): add support when blockloader is implemented
673673
if (EsqlCorePlugin.AGGREGATE_METRIC_DOUBLE_FEATURE_FLAG.isEnabled() == false) {
674674
shouldBeSupported.remove(DataType.AGGREGATE_METRIC_DOUBLE);
675675
}

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/nulls/Coalesce.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public ExpressionEvaluator.Factory toEvaluator(ToEvaluator toEvaluator) {
211211
case UNSUPPORTED, SHORT, BYTE, DATE_PERIOD, OBJECT, DOC_DATA_TYPE, SOURCE, TIME_DURATION, FLOAT, HALF_FLOAT, TSID_DATA_TYPE,
212212
SCALED_FLOAT, PARTIAL_AGG, AGGREGATE_METRIC_DOUBLE, EXPONENTIAL_HISTOGRAM, DENSE_VECTOR ->
213213
throw new UnsupportedOperationException(dataType() + " can’t be coalesced");
214-
//TODO(b/133393): Implement coalesce for exponential histograms
214+
// TODO(b/133393): Implement coalesce for exponential histograms
215215
};
216216
}
217217
}

0 commit comments

Comments
 (0)