This is an automated email from the ASF dual-hosted git repository. rong pushed a commit to branch convert-on-type-mismatch in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit e4913befac6bbb8c419e22d85a89f64647c5b750 Author: Steve Yurong Su <[email protected]> AuthorDate: Tue Aug 6 19:16:53 2024 +0800 Update ArrayConverter.java --- .../iotdb/db/pipe/receiver/converter/ArrayConverter.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/receiver/converter/ArrayConverter.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/receiver/converter/ArrayConverter.java index 0afcb216162..7960150733a 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/receiver/converter/ArrayConverter.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/receiver/converter/ArrayConverter.java @@ -32,19 +32,6 @@ public class ArrayConverter { final Object sourceValues); } - // BOOLEAN((byte)0), - // INT32((byte)1), - // INT64((byte)2), - // FLOAT((byte)3), - // DOUBLE((byte)4), - // TEXT((byte)5), - // VECTOR((byte)6), - // UNKNOWN((byte)7), - // TIMESTAMP((byte)8), - // DATE((byte)9), - // BLOB((byte)10), - // STRING((byte)11); - private static final Converter[][] CONVERTER = new Converter[TSDataType.values().length][TSDataType.values().length];
