diff options
author | unknown <thek@adventure.(none)> | 2008-02-04 19:55:36 +0100 |
---|---|---|
committer | unknown <thek@adventure.(none)> | 2008-02-04 19:55:36 +0100 |
commit | 1df9d557b93b1838e03ad571111574ca19044637 (patch) | |
tree | f4167494b0d5713dde7520f7757ebedee9518800 /mysql-test/r/grant.result | |
parent | eba5afec0a8599261ab610ec0ac779dffcd4d4f3 (diff) | |
download | mariadb-git-1df9d557b93b1838e03ad571111574ca19044637.tar.gz |
Patch clean up.
Fixed interference between tests: Users were added but not properly removed.
This caused later tests to fail.
mysql-test/r/grant.result:
Fixed interference between tests: Users were added but not properly removed.
This caused later tests to fail.
mysql-test/t/grant.test:
Fixed interference between tests: Users were added but not properly removed.
This caused later tests to fail.
Diffstat (limited to 'mysql-test/r/grant.result')
-rw-r--r-- | mysql-test/r/grant.result | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/r/grant.result b/mysql-test/r/grant.result index e4334972845..c157e1d4706 100644 --- a/mysql-test/r/grant.result +++ b/mysql-test/r/grant.result @@ -1235,8 +1235,8 @@ select col1 from test limit 1 into tmp; return '1'; end| create view v1 as select test.* from test where test.col1=test_function(); -grant update (col1) on v1 to 'greg'; -revoke all privileges on v1 from 'greg'; +grant update (col1) on v1 to 'greg'@'localhost'; +drop user 'greg'@'localhost'; drop view v1; drop table test; drop function test_function; @@ -1304,5 +1304,6 @@ CALL mysqltest1.test(); 1 DROP DATABASE mysqltest1; RENAME TABLE mysql.procs_gone TO mysql.procs_priv; +DROP USER mysqltest_1@localhost; FLUSH PRIVILEGES; End of 5.1 tests |