diff options
Diffstat (limited to 'mysql-test/main/grant.test')
-rw-r--r-- | mysql-test/main/grant.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/grant.test b/mysql-test/main/grant.test index c3bb987acc8..5d7c85630f3 100644 --- a/mysql-test/main/grant.test +++ b/mysql-test/main/grant.test @@ -160,12 +160,12 @@ create table t1 (a int); grant ALL PRIVILEGES on *.* to drop_user2@localhost with GRANT OPTION; show grants for drop_user2@localhost; revoke all privileges, grant option from drop_user2@localhost; -drop user drop_user2@localhost; -grant ALL PRIVILEGES on *.* to drop_user@localhost with GRANT OPTION; +grant ALL PRIVILEGES on *.* to drop_user@localhost , drop_user2@localhost with GRANT OPTION, ; grant ALL PRIVILEGES on test.* to drop_user@localhost with GRANT OPTION; grant select(a) on test.t1 to drop_user@localhost; show grants for drop_user@localhost; +drop user drop_user2@localhost; # # Bug#3086 SHOW GRANTS doesn't follow ANSI_QUOTES |