This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 61a357d654e [Py-client] Fix test_dialect failed (#15630)
61a357d654e is described below

commit 61a357d654efff83b9ee72f57696e3fc41528356
Author: Haonan <[email protected]>
AuthorDate: Tue Jun 3 12:34:16 2025 +0800

    [Py-client] Fix test_dialect failed (#15630)
---
 iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py 
b/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py
index 35a16ff366e..156464bcce9 100644
--- a/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py
+++ b/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py
@@ -76,7 +76,7 @@ def test_dialect():
         insp = inspect(eng)
         # test get_schema_names
         schema_names = insp.get_schema_names()
-        if not operator.ge(schema_names, ["root.cursor_s1", "root.cursor"]):
+        if not operator.ge(schema_names, ["root.cursor", "root.cursor_s1"]):
             test_fail()
             print_message("test get_schema_names failed!")
         # test get_table_names

Reply via email to