From de76a02acf1bcfa77be11ef64ed1ef4350ac24c3 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Thu, 20 Apr 2023 14:08:38 +0800 Subject: [PATCH] test: select fields error --- tests/system-test/0-others/udf_create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system-test/0-others/udf_create.py b/tests/system-test/0-others/udf_create.py index e53289e92e..3e4ca86e52 100644 --- a/tests/system-test/0-others/udf_create.py +++ b/tests/system-test/0-others/udf_create.py @@ -195,7 +195,7 @@ class TDTestCase: # scalar functions # udf1_dup - tdSql.query("select num1 , udf1(num1) ,udf1_dup(num1) from tb") + tdSql.query("select udf1(num1) ,udf1_dup(num1) from tb") tdSql.checkData(1,0,1) tdSql.checkData(1,1,2) tdSql.checkData(2,0,1) -- GitLab