This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch query_v3_py
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/query_v3_py by this push:
new 61035416f4c try one try
61035416f4c is described below
commit 61035416f4c8f23127bda428e4edb82a034a5748
Author: HTHou <[email protected]>
AuthorDate: Tue Mar 25 18:49:14 2025 +0800
try one try
---
iotdb-client/client-py/tests/integration/test_todf.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/iotdb-client/client-py/tests/integration/test_todf.py
b/iotdb-client/client-py/tests/integration/test_todf.py
index 9cd8ad26e6b..42f90bce1b5 100644
--- a/iotdb-client/client-py/tests/integration/test_todf.py
+++ b/iotdb-client/client-py/tests/integration/test_todf.py
@@ -213,6 +213,9 @@ def test_multi_fetch():
session_data_set = session.execute_query_statement("SELECT ** FROM
root.wt1")
session_data_set.set_fetch_size(100)
df_output = session_data_set.todf()
+ for col in df_output.columns:
+ dt = df_output[col].dtype
+ print(f"Column: {col}, Byte order: {dt}")
df_output = df_output[df_input.columns.tolist()]
session.close()