From fe491e3e9e36d1563b1eb1ece47756bd39bb9a7e Mon Sep 17 00:00:00 2001 From: cpwu Date: Mon, 30 May 2022 14:19:16 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/explain.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/system-test/2-query/explain.py b/tests/system-test/2-query/explain.py index 53f9e40170..4f98b4685d 100644 --- a/tests/system-test/2-query/explain.py +++ b/tests/system-test/2-query/explain.py @@ -62,10 +62,10 @@ class TDTestCase: for char_col in CHAR_COL: query_condition.extend( ( - f"sum(cast({tbname}.{char_col}) as bigint)", - f"max(cast({tbname}.{char_col}) as bigint)", - f"min(cast({tbname}.{char_col}) as bigint)", - f"avg(cast({tbname}.{char_col}) as bigint)", + f"sum(cast({tbname}.{char_col} as bigint ))", + f"max(cast({tbname}.{char_col} as bigint ))", + f"min(cast({tbname}.{char_col} as bigint ))", + f"avg(cast({tbname}.{char_col} as bigint ))", ) ) query_condition.extend( -- GitLab