fix case
This commit is contained in:
parent
fa71f70ea5
commit
166bc66ca7
File diff suppressed because it is too large
Load Diff
|
@ -126,7 +126,7 @@ class TDTestCase:
|
||||||
def __single_sql(self, select_clause, from_clause, where_condition="", group_condition=""):
|
def __single_sql(self, select_clause, from_clause, where_condition="", group_condition=""):
|
||||||
if isinstance(select_clause, str) and "on" not in from_clause and select_clause.split(".")[0] != from_clause.split(".")[0]:
|
if isinstance(select_clause, str) and "on" not in from_clause and select_clause.split(".")[0] != from_clause.split(".")[0]:
|
||||||
return
|
return
|
||||||
return f"select spread({select_clause}) from {from_clause} {where_condition} {group_condition}"
|
return f"select hyperloglog({select_clause}) from {from_clause} {where_condition} {group_condition}"
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def __tb_list(self):
|
def __tb_list(self):
|
||||||
|
|
Loading…
Reference in New Issue