[test](fix case) fix sql user conflict in test case (#23583)

This commit is contained in:
shuke
2023-08-29 11:33:49 +08:00
committed by GitHub
parent 7913354f78
commit 93db9b455a

View File

@ -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"