Skip to content

Commit

Permalink
Fix Java classes in PrimitiveType.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdblue committed Dec 13, 2024
1 parent c220d50 commit 68a535f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/apache/iceberg/variants/Variants.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public enum PhysicalType {
NULL(LogicalType.NULL, Void.class),
BOOLEAN_TRUE(LogicalType.BOOLEAN, Boolean.class),
BOOLEAN_FALSE(LogicalType.BOOLEAN, Boolean.class),
INT8(LogicalType.EXACT_NUMERIC, Integer.class),
INT16(LogicalType.EXACT_NUMERIC, Integer.class),
INT8(LogicalType.EXACT_NUMERIC, Byte.class),
INT16(LogicalType.EXACT_NUMERIC, Short.class),
INT32(LogicalType.EXACT_NUMERIC, Integer.class),
INT64(LogicalType.EXACT_NUMERIC, Long.class),
DOUBLE(LogicalType.DOUBLE, Double.class),
Expand Down

0 comments on commit 68a535f

Please sign in to comment.