From cfd94e6dc2a80b20ec49281492522f21dc8214c0 Mon Sep 17 00:00:00 2001 From: cpwu Date: Thu, 28 Apr 2022 19:18:51 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/char_length.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/2-query/char_length.py b/tests/system-test/2-query/char_length.py index fe9f5807ef..a27c11ed82 100644 --- a/tests/system-test/2-query/char_length.py +++ b/tests/system-test/2-query/char_length.py @@ -59,7 +59,7 @@ class TDTestCase: groups = ["", group_having, group_no_having] for group_condition in groups: - tdSql.query(f"select {condition}, length( {condition} ) from {tbname} {where_condition} {group_condition} ") + tdSql.query(f"select {condition}, char_length( {condition} ) from {tbname} {where_condition} {group_condition} ") for i in range(tdSql.queryRows): if not tdSql.getData(i,1): tdSql.checkData(i, 1, None) -- GitLab