This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch try_TBinaryProtocolAccelerated
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/try_TBinaryProtocolAccelerated
by this push:
new 6d331d49833 Fix test
6d331d49833 is described below
commit 6d331d498333bf71dd803bd408a7c53d7b32ae9e
Author: HTHou <[email protected]>
AuthorDate: Fri Sep 22 21:07:44 2023 +0800
Fix test
---
iotdb-client/client-py/iotdb/utils/NumpyTablet.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/iotdb-client/client-py/iotdb/utils/NumpyTablet.py
b/iotdb-client/client-py/iotdb/utils/NumpyTablet.py
index dbb0d354dbd..c2c23ee3e25 100644
--- a/iotdb-client/client-py/iotdb/utils/NumpyTablet.py
+++ b/iotdb-client/client-py/iotdb/utils/NumpyTablet.py
@@ -145,7 +145,7 @@ class NumpyTablet(object):
_l = len(bs)
ret[offset : offset + _l] = bs
offset += _l
- return ret
+ return bytes(ret)
def mark_none_value(self, column, row):
if self.bitmaps is None: