diff options
Diffstat (limited to 'mysql-test/main/grant_kill.result')
-rw-r--r-- | mysql-test/main/grant_kill.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/main/grant_kill.result b/mysql-test/main/grant_kill.result index e1243a39a70..4038219d539 100644 --- a/mysql-test/main/grant_kill.result +++ b/mysql-test/main/grant_kill.result @@ -33,8 +33,8 @@ CREATE USER foo@localhost; GRANT SELECT ON *.* TO foo@localhost; CREATE USER bar@localhost; GRANT PROCESS, CONNECTION ADMIN ON *.* TO bar@localhost; -connect foo,localhost,foo,,; -connect bar,localhost,bar,,; +connect foo,localhost,foo,,"*NO-ONE*"; +connect bar,localhost,bar,,"*NO-ONE*"; SELECT user FROM information_schema.processlist ORDER BY user; user bar @@ -53,8 +53,8 @@ CREATE USER foo@localhost; GRANT SELECT ON *.* TO foo@localhost; CREATE USER bar@localhost; GRANT PROCESS, SUPER ON *.* TO bar@localhost; -connect foo,localhost,foo,,; -connect bar,localhost,bar,,; +connect foo,localhost,foo,,"*NO-ONE*"; +connect bar,localhost,bar,,"*NO-ONE*"; SELECT user FROM information_schema.processlist ORDER BY user; user bar |