summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2003-08-22 18:32:11 +0300
committerunknown <Sinisa@sinisa.nasamreza.org>2003-08-22 18:32:11 +0300
commitbd6347df9318f46f715615e2a33ff9ba2d9dbb59 (patch)
tree002f48e76ec181220ff68780613e4e4667e7e574 /mysql-test/t
parent7036fbd3c209c4d246a0370842d2b874060b4631 (diff)
downloadmariadb-git-bd6347df9318f46f715615e2a33ff9ba2d9dbb59.tar.gz
grant.result, grant.test, sql_acl.cc:
Fix for a bug #878 sql/sql_acl.cc: Fix for a bug #878 mysql-test/t/grant.test: Fix for a bug #878 mysql-test/r/grant.result: Fix for a bug #878
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/grant.test10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/grant.test b/mysql-test/t/grant.test
index 5b20354336c..f278a720cd6 100644
--- a/mysql-test/t/grant.test
+++ b/mysql-test/t/grant.test
@@ -66,6 +66,16 @@ REVOKE insert,insert (a) on t1 from mysqltest_1@localhost;
GRANT references on t1 to mysqltest_1@localhost;
show grants for mysqltest_1@localhost;
select table_priv,column_priv from mysql.tables_priv where user="mysqltest_1";
+grant all on test.* to user1@localhost with grant option;
+revoke all on test.* from user1@localhost;
+show grants for user1@localhost;
+revoke grant option on test.* from user1@localhost;
+show grants for user1@localhost;
+grant all on test.t1 to user2@localhost with grant option;
+revoke all on test.t1 from user2@localhost;
+show grants for user2@localhost;
+revoke grant option on test.t1 from user2@localhost;
+show grants for user2@localhost;
delete from mysql.user where user='mysqltest_1';
delete from mysql.db where user='mysqltest_1';
delete from mysql.tables_priv where user='mysqltest_1';