fix case
This commit is contained in:
parent
dd3674cae0
commit
b5ac628aa0
|
@ -44,7 +44,8 @@ class TDTestCase:
|
||||||
return upper_condition
|
return upper_condition
|
||||||
|
|
||||||
def __where_condition(self, col):
|
def __where_condition(self, col):
|
||||||
return f" where count({col}) > 0 "
|
# return f" where count({col}) > 0 "
|
||||||
|
return ""
|
||||||
|
|
||||||
def __group_condition(self, col, having = ""):
|
def __group_condition(self, col, having = ""):
|
||||||
return f" group by {col} having {having}" if having else f" group by {col} "
|
return f" group by {col} having {having}" if having else f" group by {col} "
|
||||||
|
|
Loading…
Reference in New Issue