diff options
author | Alexander Nozdrin <alik@sun.com> | 2009-10-27 12:59:09 +0300 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2009-10-27 12:59:09 +0300 |
commit | c6aeab8cfe1b6be138c79aa02853eb5d3a8f259f (patch) | |
tree | 39886654de5469ef82ac29be18f49b0fa0925a6b /mysql-test/r/events_bugs.result | |
parent | b6e5b5e99bc514daf63f39f46897da5223ae3aa8 (diff) | |
parent | 7c9f6e6f3b1791d69ab204a35437c54e14933318 (diff) | |
download | mariadb-git-c6aeab8cfe1b6be138c79aa02853eb5d3a8f259f.tar.gz |
Automerge from mysql-next-mr.
Diffstat (limited to 'mysql-test/r/events_bugs.result')
-rw-r--r-- | mysql-test/r/events_bugs.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/events_bugs.result b/mysql-test/r/events_bugs.result index 3b7a0df5ebc..bb177fe3475 100644 --- a/mysql-test/r/events_bugs.result +++ b/mysql-test/r/events_bugs.result @@ -375,7 +375,7 @@ SELECT event_name, definer FROM INFORMATION_SCHEMA.EVENTS; event_name definer e1 mysqltest_u1@localhost ALTER DEFINER=root@localhost EVENT e1 ON SCHEDULE EVERY 1 HOUR; -ERROR 42000: Access denied; you need the SUPER privilege for this operation +ERROR 42000: Access denied; you need (at least one of) the SUPER privilege(s) for this operation SELECT event_name, definer FROM INFORMATION_SCHEMA.EVENTS; event_name definer e1 mysqltest_u1@localhost @@ -386,7 +386,7 @@ event_name definer e1 mysqltest_u1@localhost DROP EVENT e1; CREATE DEFINER=root@localhost EVENT e1 ON SCHEDULE EVERY 1 DAY DO SELECT 1; -ERROR 42000: Access denied; you need the SUPER privilege for this operation +ERROR 42000: Access denied; you need (at least one of) the SUPER privilege(s) for this operation DROP EVENT e1; ERROR HY000: Unknown event 'e1' DROP USER mysqltest_u1@localhost; |