diff options
Diffstat (limited to 'mysql-test/main/grant_binlog_replay.test')
-rw-r--r-- | mysql-test/main/grant_binlog_replay.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/grant_binlog_replay.test b/mysql-test/main/grant_binlog_replay.test index a3078e5023c..46d046bbee8 100644 --- a/mysql-test/main/grant_binlog_replay.test +++ b/mysql-test/main/grant_binlog_replay.test @@ -34,7 +34,7 @@ CREATE USER user1@localhost IDENTIFIED BY ''; GRANT BINLOG REPLAY ON *.* TO user1@localhost; SHOW GRANTS FOR user1@localhost; -connect (con1,localhost,user1,,); +connect (con1,localhost,user1,,"*NO-ONE*"); connection con1; # The below fails with a syntax error. # This is fine. It's only important that it does not fail on "access denied". @@ -55,7 +55,7 @@ CREATE USER user1@localhost IDENTIFIED BY ''; GRANT SUPER ON *.* TO user1@localhost; SHOW GRANTS FOR user1@localhost; -connect (con1,localhost,user1,,); +connect (con1,localhost,user1,,"*NO-ONE*"); connection con1; --error ER_BAD_SLAVE # The below fails with a syntax error. |