From abc3a3c1aeb633d2bcf39cc8ef5be44a69a2ee2e Mon Sep 17 00:00:00 2001 From: cpwu Date: Mon, 13 Jun 2022 09:54:39 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/explain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/2-query/explain.py b/tests/system-test/2-query/explain.py index dfe9d800bc..d440144841 100644 --- a/tests/system-test/2-query/explain.py +++ b/tests/system-test/2-query/explain.py @@ -150,7 +150,7 @@ class TDTestCase: for select_claus in select_claus_list: group_claus = self.__group_condition(col=select_claus) where_claus = self.__where_condition(query_conditon=select_claus) - having_claus = self.__group_condition(col=select_claus, having=f"{group_claus} is not null") + having_claus = self.__group_condition(col=select_claus, having=f"{select_claus} is not null") sqls.extend( ( self.__single_sql(select_claus, tb, where_claus, having_claus),