From 9c125a38688965ad8f337fcda3a5a92dd936b50b Mon Sep 17 00:00:00 2001 From: ocean <49178688+oceanqdu@users.noreply.github.com> Date: Tue, 9 Sep 2025 10:41:58 +0800 Subject: [PATCH] Update ArrowUtil.java Fix bug --- .../java/org/secretflow/dataproxy/common/utils/ArrowUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataproxy-common/src/main/java/org/secretflow/dataproxy/common/utils/ArrowUtil.java b/dataproxy-common/src/main/java/org/secretflow/dataproxy/common/utils/ArrowUtil.java index 7533c9b..95cc9ce 100644 --- a/dataproxy-common/src/main/java/org/secretflow/dataproxy/common/utils/ArrowUtil.java +++ b/dataproxy-common/src/main/java/org/secretflow/dataproxy/common/utils/ArrowUtil.java @@ -34,7 +34,7 @@ public static ArrowType parseKusciaColumnType(String type) { case "int16" -> Types.MinorType.SMALLINT.getType(); case "int32" -> Types.MinorType.INT.getType(); case "int64", "int" -> Types.MinorType.BIGINT.getType(); - case "unit8" -> Types.MinorType.UINT1.getType(); + case "uint8" -> Types.MinorType.UINT1.getType(); case "uint16" -> Types.MinorType.UINT2.getType(); case "uint32" -> Types.MinorType.UINT4.getType(); case "uint64" -> Types.MinorType.UINT8.getType();