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

morrysnow 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 19935277a74 [case](auth) fix export case (#48123)
19935277a74 is described below

commit 19935277a74546ad043ba5407aa884906a82cefe
Author: zhangdong <zhangd...@selectdb.com>
AuthorDate: Thu Feb 27 11:18:36 2025 +0800

    [case](auth) fix export case (#48123)
---
 regression-test/suites/auth_call/test_dml_export_table_auth.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/regression-test/suites/auth_call/test_dml_export_table_auth.groovy 
b/regression-test/suites/auth_call/test_dml_export_table_auth.groovy
index ee5674c940a..0112e86fee6 100644
--- a/regression-test/suites/auth_call/test_dml_export_table_auth.groovy
+++ b/regression-test/suites/auth_call/test_dml_export_table_auth.groovy
@@ -122,7 +122,8 @@ suite("test_dml_export_table_auth","p0,auth_call") {
             WHERE STATE = "EXPORTING";"""
         } catch (Exception e) {
             log.info(e.getMessage())
-            assertTrue(e.getMessage().indexOf("not exist") != -1)
+            // should not cause by not have auth
+            assertTrue(e.getMessage().indexOf("denied") == -1)
         }
 
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to