Skip to content

Commit 83ac392

Browse files
committed
Remove Object data type.
1 parent 0705681 commit 83ac392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iotdb-client/client-py/iotdb/tsfile/utils/tsblock_serde.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def read_from_buffer(buffer, size):
7474
def read_column_types(buffer, value_column_count):
7575
data_types = np.frombuffer(buffer, dtype=np.uint8, count=value_column_count)
7676
new_buffer = buffer[value_column_count:]
77-
if not np.all(np.isin(data_types, (0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12))):
77+
if not np.all(np.isin(data_types, (0, 1, 2, 3, 4, 5, 8, 9, 10, 11))):
7878
raise Exception("Invalid data type encountered: " + str(data_types))
7979
return data_types, new_buffer
8080

0 commit comments

Comments
 (0)