File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
core/src/main/java/org/opensearch/sql/calcite/utils/binning Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -61,13 +61,7 @@ public static boolean isTimeBasedField(RelDataType fieldType) {
6161 return fieldType .toString ().contains ("EXPR_TIMESTAMP" );
6262 }
6363
64- /**
65- * Validates that the field type is numeric for numeric binning operations.
66- *
67- * @param fieldType the RelDataType of the field to validate
68- * @param fieldName the name of the field being validated
69- * @throws SemanticCheckException if the field is not numeric
70- */
64+ /** Validates that the field type is numeric for numeric binning operations. */
7165 public static void validateNumericField (RelDataType fieldType , String fieldName ) {
7266 if (!isNumericField (fieldType )) {
7367 throw new SemanticCheckException (
You can’t perform that action at this time.
0 commit comments