Skip to content

Commit 1aa54be

Browse files
authored
Update ArrowUtil.java (#53)
Fix bug
1 parent 6bbce83 commit 1aa54be

File tree

1 file changed

+1
-1
lines changed
  • dataproxy-common/src/main/java/org/secretflow/dataproxy/common/utils

1 file changed

+1
-1
lines changed

dataproxy-common/src/main/java/org/secretflow/dataproxy/common/utils/ArrowUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static ArrowType parseKusciaColumnType(String type) {
3434
case "int16" -> Types.MinorType.SMALLINT.getType();
3535
case "int32" -> Types.MinorType.INT.getType();
3636
case "int64", "int" -> Types.MinorType.BIGINT.getType();
37-
case "unit8" -> Types.MinorType.UINT1.getType();
37+
case "uint8" -> Types.MinorType.UINT1.getType();
3838
case "uint16" -> Types.MinorType.UINT2.getType();
3939
case "uint32" -> Types.MinorType.UINT4.getType();
4040
case "uint64" -> Types.MinorType.UINT8.getType();

0 commit comments

Comments
 (0)