diff --git a/plugin/trino-iceberg/src/main/java/io/trino/plugin/iceberg/ExpressionConverter.java b/plugin/trino-iceberg/src/main/java/io/trino/plugin/iceberg/ExpressionConverter.java index f72f88cac0db..b016d5529bd2 100644 --- a/plugin/trino-iceberg/src/main/java/io/trino/plugin/iceberg/ExpressionConverter.java +++ b/plugin/trino-iceberg/src/main/java/io/trino/plugin/iceberg/ExpressionConverter.java @@ -193,7 +193,6 @@ private static Object getIcebergLiteralValue(Type type, Object trinoNativeValue) return (double) trinoNativeValue; } - // TODO: Remove this conversion once we move to next iceberg version if (type instanceof DateType) { return toIntExact(((Long) trinoNativeValue)); }