fix case
This commit is contained in:
parent
8ee2ae550f
commit
f755df6176
|
@ -81,7 +81,7 @@ class TDTestCase:
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
def __group_condition(self, tbname, col, having = ""):
|
def __group_condition(self, tbname, col, having = ""):
|
||||||
return f" group by {tbname}.{col} having {having}" if having else f" group by {tbname}.{col} "
|
return f" group by {col} having {having}" if having else f" group by {col} "
|
||||||
|
|
||||||
def __join_check(self, tblist, checkrows, join_flag=True):
|
def __join_check(self, tblist, checkrows, join_flag=True):
|
||||||
query_conditions = self.__query_condition(tblist[0])
|
query_conditions = self.__query_condition(tblist[0])
|
||||||
|
|
Loading…
Reference in New Issue