diff options
author | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-06-28 13:34:39 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-06-28 13:34:39 +0500 |
commit | 3f9bf9253343aaa9bfd581a1c7dc01f0c281dfc3 (patch) | |
tree | faed50a78309c01cd737f3fe38346400a228c630 /mysql-test/t/events_bugs.test | |
parent | 28187da7747029ee380b5ddcea84cc0002b4ad5d (diff) | |
download | mariadb-git-3f9bf9253343aaa9bfd581a1c7dc01f0c281dfc3.tar.gz |
events_bugs.test didn't remove all the objects it created
what caused some consequitive tests failures
mysql-test/r/events_bugs.result:
test result fixed
mysql-test/t/events_bugs.test:
typo fixed, event removed
Diffstat (limited to 'mysql-test/t/events_bugs.test')
-rw-r--r-- | mysql-test/t/events_bugs.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/events_bugs.test b/mysql-test/t/events_bugs.test index 7748cacf47f..ebe4d83331d 100644 --- a/mysql-test/t/events_bugs.test +++ b/mysql-test/t/events_bugs.test @@ -668,7 +668,7 @@ CREATE USER evtest1@localhost; SET PASSWORD FOR evtest1@localhost = password('ev1'); REVOKE ALL PRIVILEGES, GRANT OPTION FROM evtest1@localhost; GRANT create, insert, select, event ON events_test.* TO evtest1@localhost; -GRANT select,insert ON TEST.* TO evtest1@lcalhost; +GRANT select,insert ON TEST.* TO evtest1@localhost; SHOW GRANTS FOR evtest1@localhost; --echo connection e1; @@ -693,6 +693,7 @@ DELIMITER ;| --sleep 6 --echo connection default; +DROP EVENT ev_sched_1823; connection default; DROP USER evtest1@localhost; |