From c33d785b6e11c45227435cc26890beccef4ba2cc Mon Sep 17 00:00:00 2001 From: cpwu Date: Sat, 28 May 2022 20:12:42 +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 2e94a2e462..53f9e40170 100644 --- a/tests/system-test/2-query/explain.py +++ b/tests/system-test/2-query/explain.py @@ -201,7 +201,7 @@ class TDTestCase: def __test_current(self): tdSql.query("explain select c1 from ct1") tdSql.query("explain select 1 from ct2") - tdSql.query("explain select c2 from ct4 group by c1") + tdSql.query("explain select cast(ceil(c6) as bigint) from ct4 group by c6") tdSql.query("explain select count(c3) from ct4 group by c7 having count(c3) > 0") tdSql.query("explain select ct2.c3 from ct4 join ct2 on ct4.ts=ct2.ts") tdSql.query("explain select c1 from stb1 where c1 is not null and c1 in (0, 1, 2) or c1 between 2 and 100 ")