manirajv06 commented on code in PR #13195: URL: https://github.com/apache/iceberg/pull/13195#discussion_r2143237523
########## api/src/main/java/org/apache/iceberg/expressions/VariantExpressionUtil.java: ########## @@ -40,29 +38,32 @@ class VariantExpressionUtil { .put(Types.DateType.get(), PhysicalType.DATE) .put(Types.TimestampType.withoutZone(), PhysicalType.TIMESTAMPNTZ) .put(Types.TimestampType.withZone(), PhysicalType.TIMESTAMPTZ) + .put(Types.TimestampNanoType.withoutZone(), PhysicalType.TIMESTAMPNTZ_NANOS) + .put(Types.TimestampNanoType.withZone(), PhysicalType.TIMESTAMPTZ_NANOS) + .put(Types.TimeType.get(), PhysicalType.TIME) + .put(Types.UUIDType.get(), PhysicalType.UUID) .put(Types.StringType.get(), PhysicalType.STRING) .put(Types.BinaryType.get(), PhysicalType.BINARY) .put(Types.UnknownType.get(), PhysicalType.NULL) .build(); private VariantExpressionUtil() {} - @SuppressWarnings("unchecked") + // Todo: Fix cyclomatic complexity checkstyle error using appropriate casting functions Review Comment: Taken care. But it would throw checkstyle errors: iceberg/api/src/main/java/org/apache/iceberg/expressions/VariantExpressionUtil.java:52:3: Cyclomatic Complexity is 14 (max allowed is 12). [CyclomaticComplexity] -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org