This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new c47f0b66dc remove Nullable on primitive type (#15809) c47f0b66dc is described below commit c47f0b66dc02fe2e1b6c7f8d358cfede5a9f1294 Author: Xiaobing <61892277+klsi...@users.noreply.github.com> AuthorDate: Fri May 16 11:23:43 2025 -0700 remove Nullable on primitive type (#15809) --- .../main/java/org/apache/pinot/segment/local/utils/SchemaUtils.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/SchemaUtils.java b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/SchemaUtils.java index 63eef83214..09ebf24063 100644 --- a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/SchemaUtils.java +++ b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/SchemaUtils.java @@ -25,7 +25,6 @@ import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; -import javax.annotation.Nullable; import org.apache.commons.lang3.StringUtils; import org.apache.pinot.segment.local.function.FunctionEvaluator; import org.apache.pinot.segment.local.function.FunctionEvaluatorFactory; @@ -75,7 +74,7 @@ public class SchemaUtils { validate(schema, tableConfigs, false); } - public static void validate(Schema schema, List<TableConfig> tableConfigs, @Nullable boolean isIgnoreCase) { + public static void validate(Schema schema, List<TableConfig> tableConfigs, boolean isIgnoreCase) { for (TableConfig tableConfig : tableConfigs) { validateCompatibilityWithTableConfig(schema, tableConfig); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org