From b5ac628aa0dcee4cb3165e5e226f22d3518bd0d8 Mon Sep 17 00:00:00 2001 From: cpwu Date: Mon, 25 Apr 2022 19:09:21 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/upper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/system-test/2-query/upper.py b/tests/system-test/2-query/upper.py index afb34cc36a..d3f786a7ba 100644 --- a/tests/system-test/2-query/upper.py +++ b/tests/system-test/2-query/upper.py @@ -44,7 +44,8 @@ class TDTestCase: return upper_condition def __where_condition(self, col): - return f" where count({col}) > 0 " + # return f" where count({col}) > 0 " + return "" def __group_condition(self, col, having = ""): return f" group by {col} having {having}" if having else f" group by {col} "