This is an automated email from the ASF dual-hosted git repository.
gabriellee 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 93db9b455a [test](fix case) fix sql user conflict in test case (#23583)
93db9b455a is described below
commit 93db9b455a39060d7d6572f7dc2f337cd6f9328b
Author: shuke <[email protected]>
AuthorDate: Tue Aug 29 11:33:49 2023 +0800
[test](fix case) fix sql user conflict in test case (#23583)
---
.../load_p0/stream_load/test_stream_load_move_memtable.groovy | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/regression-test/suites/load_p0/stream_load/test_stream_load_move_memtable.groovy
b/regression-test/suites/load_p0/stream_load/test_stream_load_move_memtable.groovy
index c7d1fdf721..f0910c2dee 100644
---
a/regression-test/suites/load_p0/stream_load/test_stream_load_move_memtable.groovy
+++
b/regression-test/suites/load_p0/stream_load/test_stream_load_move_memtable.groovy
@@ -877,8 +877,8 @@ suite("test_stream_load_move_memtable", "p0") {
PROPERTIES ("replication_allocation" = "tag.location.default: 1");
"""
- sql """create USER common_user@'%' IDENTIFIED BY '123456'"""
- sql """GRANT LOAD_PRIV ON *.* TO 'common_user'@'%';"""
+ sql """create USER common_user1@'%' IDENTIFIED BY '123456'"""
+ sql """GRANT LOAD_PRIV ON *.* TO 'common_user1'@'%';"""
streamLoad {
table "${tableName13}"
@@ -906,7 +906,7 @@ suite("test_stream_load_move_memtable", "p0") {
}
sql "sync"
- sql """DROP USER 'common_user'@'%'"""
+ sql """DROP USER 'common_user1'@'%'"""
// test default value
def tableName14 = "test_default_value_mm"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]