From 4c7979be587c4e7fdfb1ce67fa3b116d391c75f0 Mon Sep 17 00:00:00 2001 From: TengJianPing <18241664+jacktengg@users.noreply.github.com> Date: Fri, 7 Apr 2023 16:44:35 +0800 Subject: [PATCH] [fix](regression-test) fix failure of test case (#18454) --- .../query_p0/sql_functions/math_functions/test_round.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regression-test/suites/query_p0/sql_functions/math_functions/test_round.groovy b/regression-test/suites/query_p0/sql_functions/math_functions/test_round.groovy index 51dd5c1f91..005f0c7172 100644 --- a/regression-test/suites/query_p0/sql_functions/math_functions/test_round.groovy +++ b/regression-test/suites/query_p0/sql_functions/math_functions/test_round.groovy @@ -62,6 +62,7 @@ suite("test_round") { qt_nereids_round_bankers_arg2 "SELECT round_bankers(10.12345, 2)" def tableName1 = "test_round1" + sql """ DROP TABLE IF EXISTS `${tableName1}` """ sql """ CREATE TABLE `${tableName1}` ( `TENANT_ID` varchar(50) NOT NULL, `PUBONLN_PRC` decimalv3(18, 4) NULL, @@ -80,6 +81,7 @@ suite("test_round") { ); """ def tableName2 = "test_round2" + sql """ DROP TABLE IF EXISTS `${tableName2}` """ sql """ CREATE TABLE `${tableName2}` ( `tenant_id` varchar(50) NOT NULL COMMENT '租户ID', `prodentp_code` varchar(50) NULL COMMENT '生产企业代码',