From cb5e5c5aa7b40272fd455dfc378c249fcd3a6b2d Mon Sep 17 00:00:00 2001 From: zy-kkk Date: Mon, 20 May 2024 16:47:23 +0800 Subject: [PATCH] [branch-2.1](test) fix dual test #35067 --- regression-test/suites/query_p0/dual/dual.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-test/suites/query_p0/dual/dual.groovy b/regression-test/suites/query_p0/dual/dual.groovy index eb001305b4..42e4ce7ba8 100644 --- a/regression-test/suites/query_p0/dual/dual.groovy +++ b/regression-test/suites/query_p0/dual/dual.groovy @@ -70,7 +70,7 @@ suite('dual') { // Test error handling when table does not exist test { sql "select 1 from `dual`" - exception "Table [dual] does not exist in database [regression_test_query_p0_dual]" + exception "Unknown table 'dual'" } // Disable and enable Nereids planner to check behavior differences @@ -90,4 +90,4 @@ suite('dual') { sql "select 1, a from dual" exception "Unknown column 'a' in 'table list'" } -} \ No newline at end of file +}