This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 54ae9714b30 branch-3.0: [fix](test) fix unstable test_query_sys_tables
#50593 (#50597)
54ae9714b30 is described below
commit 54ae9714b3097e0e5b613c1d9482c79c8b30f973
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Wed May 7 11:40:49 2025 +0800
branch-3.0: [fix](test) fix unstable test_query_sys_tables #50593 (#50597)
bp #50593
---
.../suites/query_p0/system/test_query_sys_tables.groovy | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git
a/regression-test/suites/query_p0/system/test_query_sys_tables.groovy
b/regression-test/suites/query_p0/system/test_query_sys_tables.groovy
index a0f246f03f6..8b3348efb5a 100644
--- a/regression-test/suites/query_p0/system/test_query_sys_tables.groovy
+++ b/regression-test/suites/query_p0/system/test_query_sys_tables.groovy
@@ -153,13 +153,13 @@ suite("test_query_sys_tables", "query,p0") {
// test tables
// create test dbs
- sql("CREATE DATABASE IF NOT EXISTS ${dbName1}")
- sql("CREATE DATABASE IF NOT EXISTS ${dbName2}")
- sql("CREATE DATABASE IF NOT EXISTS ${dbName3}")
+ sql("DROP DATABASE IF EXISTS ${dbName1}")
+ sql("DROP DATABASE IF EXISTS ${dbName2}")
+ sql("DROP DATABASE IF EXISTS ${dbName3}")
// create test tbs
- sql("CREATE DATABASE IF NOT EXISTS ${dbName1}")
- sql("CREATE DATABASE IF NOT EXISTS ${dbName2}")
- sql("CREATE DATABASE IF NOT EXISTS ${dbName3}")
+ sql("CREATE DATABASE ${dbName1}")
+ sql("CREATE DATABASE ${dbName2}")
+ sql("CREATE DATABASE ${dbName3}")
// create test tbs
sql("use ${dbName1}")
sql """
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]