From 14a64fd57321906eb91039045006b14e1c4102f3 Mon Sep 17 00:00:00 2001 From: wenzhouwww Date: Thu, 6 Jan 2022 11:06:23 +0800 Subject: [PATCH] [TD-12204](query): update case --- tests/system-test/2-query/TD-12204.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system-test/2-query/TD-12204.py b/tests/system-test/2-query/TD-12204.py index ba40525889..3659f08cd3 100644 --- a/tests/system-test/2-query/TD-12204.py +++ b/tests/system-test/2-query/TD-12204.py @@ -369,7 +369,7 @@ class TDTestCase: print(conn1) - for i in range(5): + for i in range(2): try: taos_cmd1 = "taos -f 2-query/TD-12204.py.sql" _ = subprocess.check_output(taos_cmd1, shell=True).decode("utf-8") @@ -377,7 +377,7 @@ class TDTestCase: print(i) print(conn1) - for i in range(10): + for i in range(5): cur1.execute('use db ;') sql = 'select * from stable_1 where t_smallint between 0 and 32767 and t_float between 0 and 3.4E38 and t_nchar is not null and q_smallint between 0 and 32767 and q_nchar is not null and t_binary is not null and q_tinyint is not null and ts < now +1s order by ts ;;;' -- GitLab