diff options
author | tsmith@ramayana.hindu.god <> | 2007-12-07 03:39:37 -0700 |
---|---|---|
committer | tsmith@ramayana.hindu.god <> | 2007-12-07 03:39:37 -0700 |
commit | 6835272b3788040da5a9b746c2041423ac28fecc (patch) | |
tree | 266e0f46d83f43939b6862fb202f93c30c78cbdb /mysql-test/t/grant.test | |
parent | b922c9646cbae90ff4bbe88e7c5b3d5e8be64e51 (diff) | |
download | mariadb-git-6835272b3788040da5a9b746c2041423ac28fecc.tar.gz |
Make tests more robust (clean up better after grant.test)
Diffstat (limited to 'mysql-test/t/grant.test')
-rw-r--r-- | mysql-test/t/grant.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/grant.test b/mysql-test/t/grant.test index 1d11a669811..ed95d90c8f8 100644 --- a/mysql-test/t/grant.test +++ b/mysql-test/t/grant.test @@ -1122,6 +1122,7 @@ DROP DATABASE mysqltest1; DROP DATABASE mysqltest2; DROP USER mysqltest_1@localhost; +DROP USER mysqltest_2@localhost; # # Bug#27878: Unchecked privileges on a view referring to a table from another @@ -1147,6 +1148,7 @@ connection default; REVOKE UPDATE (f1) ON `test`.`t1` FROM 'mysqltest_1'@'localhost'; REVOKE SELECT ON `test`.* FROM 'mysqltest_1'@'localhost'; REVOKE ALL ON db27878.* FROM 'mysqltest_1'@'localhost'; +DROP USER mysqltest_1@localhost; DROP DATABASE db27878; use test; DROP TABLE t1; |