diff options
author | Sachin <sachin.setiya@mariadb.com> | 2018-09-17 12:46:24 +0530 |
---|---|---|
committer | Sachin <sachin.setiya@mariadb.com> | 2018-09-17 12:46:24 +0530 |
commit | 4968cbd512d81570a65ed5261d579994505ec806 (patch) | |
tree | f10e8dab0f9dae07babf6f57f7228319ced968e8 /mysql-test/main/grant.test | |
parent | f6694b62447454028dd087802cd3b326ed721dd7 (diff) | |
download | mariadb-git-bb-10.4-multiple-user-binlog.tar.gz |
multiple_user_binlogbb-10.4-multiple-user-binlog
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 |