[test](fix case) fix sql user conflict in test case (#23583)
This commit is contained in:
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user