From e2a20c1d159354f00b2088b2d0529ef8a53215e6 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Thu, 20 Apr 2023 14:38:23 +0800 Subject: [PATCH] test: add udf2_dup test case --- 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 ec7716fba3..ee1a0ef5b3 100644 --- a/tests/system-test/0-others/udf_create.py +++ b/tests/system-test/0-others/udf_create.py @@ -257,7 +257,7 @@ class TDTestCase: # aggregate functions - tdSql.query("select udf2(num1) ,udf2_dup(num2) from tb") + tdSql.query("select udf2(num1) ,udf2_dup(num1) from tb") val = tdSql.queryResult[0][0] + 100 tdSql.checkData(0,1,val)