From 4f0ca52adf5142843a6141ef2205648d65d69f0f Mon Sep 17 00:00:00 2001 From: cpwu Date: Sat, 7 May 2022 17:47:26 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/concat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/2-query/concat.py b/tests/system-test/2-query/concat.py index 6ad3b00962..bb5441322c 100644 --- a/tests/system-test/2-query/concat.py +++ b/tests/system-test/2-query/concat.py @@ -73,7 +73,7 @@ class TDTestCase: for i in range(len(concat_condition) - num + 1 ): condition = self.__concat_num(concat_condition[i:], num) where_condition = self.__where_condition(condition[0]) - group_having = self.__group_condition(condition[0], having=f"{condition} is not null " ) + group_having = self.__group_condition(condition[0], having=f"{condition[0]} is not null " ) group_no_having= self.__group_condition(condition[0] ) groups = ["", group_having, group_no_having]