From 6ebcbcd0dd0b8a8db27023353e1cb105b53c9a4d Mon Sep 17 00:00:00 2001 From: Kang Date: Mon, 8 May 2023 15:57:58 +0800 Subject: [PATCH] [bugfix](testcase) fix test_query_sys_tables decimal type precision (#19230) --- .../suites/query_p2/system/test_query_sys_tables.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/regression-test/suites/query_p2/system/test_query_sys_tables.groovy b/regression-test/suites/query_p2/system/test_query_sys_tables.groovy index fd82529b41..dc25003061 100644 --- a/regression-test/suites/query_p2/system/test_query_sys_tables.groovy +++ b/regression-test/suites/query_p2/system/test_query_sys_tables.groovy @@ -47,9 +47,9 @@ suite("test_query_sys_tables_p2", "p2") { `qqq` varchar(130) NULL COMMENT "", `rrr` bigint(20) NULL COMMENT "", `sss` bigint(20) NULL COMMENT "", - `ttt` decimal(24, 2) NULL COMMENT "", - `uuu` decimal(24, 2) NULL COMMENT "", - `vvv` decimal(24, 2) NULL COMMENT "", + `ttt` decimal(9, 3) NULL COMMENT "", + `uuu` decimal(9, 3) NULL COMMENT "", + `vvv` decimal(9, 3) NULL COMMENT "", `www` varchar(50) NULL COMMENT "", `xxx` varchar(190) NULL COMMENT "", `yyy` varchar(190) NULL COMMENT "",