From 798eb9734bb6dc0b2e7c301f83a583e5ec0321e3 Mon Sep 17 00:00:00 2001 From: cpwu Date: Wed, 25 May 2022 14:39:20 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/spread.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/system-test/2-query/spread.py b/tests/system-test/2-query/spread.py index b0734e4b09..1187078bd4 100644 --- a/tests/system-test/2-query/spread.py +++ b/tests/system-test/2-query/spread.py @@ -128,13 +128,14 @@ class TDTestCase: return return f"select spread({select_clause}) from {from_clause} {where_condition} {group_condition}" - @property def __tb_list(self): return [ "ct1", "ct4", "t1", + "ct2", + "stb1", ] def sql_list(self): @@ -149,6 +150,9 @@ class TDTestCase: sqls.extend( ( self.__single_sql(select_claus, tb, where_claus, having_claus), + self.__single_sql(select_claus, tb,), + self.__single_sql(select_claus, tb, where_condition=where_claus), + self.__single_sql(select_claus, tb, group_condition=group_claus), ) )