This commit is contained in:
cpwu 2022-05-25 14:39:20 +08:00
parent 97094b29cf
commit 798eb9734b
1 changed files with 5 additions and 1 deletions

View File

@ -128,13 +128,14 @@ class TDTestCase:
return return
return f"select spread({select_clause}) from {from_clause} {where_condition} {group_condition}" return f"select spread({select_clause}) from {from_clause} {where_condition} {group_condition}"
@property @property
def __tb_list(self): def __tb_list(self):
return [ return [
"ct1", "ct1",
"ct4", "ct4",
"t1", "t1",
"ct2",
"stb1",
] ]
def sql_list(self): def sql_list(self):
@ -149,6 +150,9 @@ class TDTestCase:
sqls.extend( sqls.extend(
( (
self.__single_sql(select_claus, tb, where_claus, having_claus), 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),
) )
) )