diff --git a/tests/system-test/2-query/join.py b/tests/system-test/2-query/join.py index aea454b9b7accd623f9e68ec1c8e9cb46ee861e0..ebaa2e8b9f601dfbed9aa4fdbbb0523a48ef2cf1 100644 --- a/tests/system-test/2-query/join.py +++ b/tests/system-test/2-query/join.py @@ -81,7 +81,7 @@ class TDTestCase: return "" 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): query_conditions = self.__query_condition(tblist[0])