This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 205ecbeac19 [fix](case) fix workload group case (#55982)
205ecbeac19 is described below

commit 205ecbeac194350642e849f8357dfa1f2bce886f
Author: shuke <[email protected]>
AuthorDate: Sun Sep 14 17:03:25 2025 +0800

    [fix](case) fix workload group case (#55982)
---
 .../suites/auth_p0/test_master_slave_consistency_auth.groovy        | 6 +++---
 regression-test/suites/auth_p0/test_select_column_auth.groovy       | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/regression-test/suites/auth_p0/test_master_slave_consistency_auth.groovy 
b/regression-test/suites/auth_p0/test_master_slave_consistency_auth.groovy
index e49c35b7c3b..964c246663e 100644
--- a/regression-test/suites/auth_p0/test_master_slave_consistency_auth.groovy
+++ b/regression-test/suites/auth_p0/test_master_slave_consistency_auth.groovy
@@ -60,8 +60,8 @@ suite ("test_follower_consistent_auth","p0,auth") {
         String catalog_name = 'test_follower_consistent_catalog'
         try_sql("DROP role ${role}")
         sql """CREATE ROLE ${role}"""
-        sql """drop WORKLOAD GROUP if exists '${wg}' $forComputeGroupStr """
-        sql """CREATE WORKLOAD GROUP '${wg}' $forComputeGroupStr "
+        sql """drop WORKLOAD GROUP if exists ${wg} $forComputeGroupStr """
+        sql """CREATE WORKLOAD GROUP '${wg}' $forComputeGroupStr
         PROPERTIES (
             "min_cpu_percent"="10"
         );"""
@@ -98,7 +98,7 @@ suite ("test_follower_consistent_auth","p0,auth") {
         sql """create view ${dbName}.${view_name} as select * from 
${dbName}.${tableName};"""
         sql """alter table ${dbName}.${tableName} add rollup 
${rollup_name}(username)"""
         sleep(5 * 1000)
-        sql """create materialized view ${mv_name} as select username from 
${dbName}.${tableName}"""
+        sql """create materialized view ${mv_name} as select username as 
username_new from ${dbName}.${tableName}"""
         sleep(5 * 1000)
         sql """CREATE MATERIALIZED VIEW ${dbName}.${mtmv_name} 
         BUILD IMMEDIATE REFRESH AUTO ON MANUAL 
diff --git a/regression-test/suites/auth_p0/test_select_column_auth.groovy 
b/regression-test/suites/auth_p0/test_select_column_auth.groovy
index ba1511c77c0..8de4c3a7c2b 100644
--- a/regression-test/suites/auth_p0/test_select_column_auth.groovy
+++ b/regression-test/suites/auth_p0/test_select_column_auth.groovy
@@ -70,7 +70,7 @@ suite("test_select_column_auth","p0,auth") {
     }
     sleep(1000)
     
-    createMV("""create materialized view ${mtmv_name} as select username from 
${dbName}.${tableName}""")
+    createMV("""create materialized view ${mtmv_name} as select username as 
username_new from ${dbName}.${tableName}""")
     sleep(5 * 1000)
     sql """CREATE MATERIALIZED VIEW ${dbName}.${mtmv_name} 
         BUILD IMMEDIATE REFRESH AUTO ON MANUAL 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to