This is an automated email from the ASF dual-hosted git repository. lancelly pushed a commit to branch remove_datatype in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit ff027b88a836e8f0bfd0f4635d40d44353ee80fe Author: lancelly <[email protected]> AuthorDate: Mon Jun 3 16:00:00 2024 +0800 remove --- .../src/main/java/org/apache/iotdb/udf/api/type/Type.java | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/type/Type.java b/iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/type/Type.java index b1c4dee2a5f..a445600dbfe 100644 --- a/iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/type/Type.java +++ b/iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/type/Type.java @@ -39,23 +39,17 @@ public enum Type { /* TEXT */ TEXT((byte) 5), - /* VECTOR */ - VECTOR((byte) 6), - - /* UNKNOWN */ - UNKNOWN((byte) 7), - /* TIMESTAMP */ - TIMESTAMP((byte) 8), + TIMESTAMP((byte) 6), /* DATE */ - DATE((byte) 9), + DATE((byte) 7), /* BLOB */ - BLOB((byte) 10), + BLOB((byte) 8), /* STRING */ - STRING((byte) 11); + STRING((byte) 9); private final byte dataType; Type(byte type) {
