We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bbce83 commit 1aa54beCopy full SHA for 1aa54be
dataproxy-common/src/main/java/org/secretflow/dataproxy/common/utils/ArrowUtil.java
@@ -34,7 +34,7 @@ public static ArrowType parseKusciaColumnType(String type) {
34
case "int16" -> Types.MinorType.SMALLINT.getType();
35
case "int32" -> Types.MinorType.INT.getType();
36
case "int64", "int" -> Types.MinorType.BIGINT.getType();
37
- case "unit8" -> Types.MinorType.UINT1.getType();
+ case "uint8" -> Types.MinorType.UINT1.getType();
38
case "uint16" -> Types.MinorType.UINT2.getType();
39
case "uint32" -> Types.MinorType.UINT4.getType();
40
case "uint64" -> Types.MinorType.UINT8.getType();
0 commit comments