diff options
author | andrey@lmy004. <> | 2006-02-15 17:12:27 +0100 |
---|---|---|
committer | andrey@lmy004. <> | 2006-02-15 17:12:27 +0100 |
commit | 32ae54bdbc14e022a27074900e9b072c3500888c (patch) | |
tree | 9ed6fc16ec4ffe63119d291e56559b89f9210473 /mysql-test/r/events.result | |
parent | 3195aef714d813a9824f74f41a39117e367a84c7 (diff) | |
download | mariadb-git-32ae54bdbc14e022a27074900e9b072c3500888c.tar.gz |
fix for bug#16410 (Events: CREATE EVENT is legal in a CREATE TRIGGER statement)
WL#1034 (Internal CRON)
(post-post-review updates)
Diffstat (limited to 'mysql-test/r/events.result')
-rw-r--r-- | mysql-test/r/events.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/events.result b/mysql-test/r/events.result index c138b8bde48..86f98f0da8b 100644 --- a/mysql-test/r/events.result +++ b/mysql-test/r/events.result @@ -361,4 +361,8 @@ show processlist; Id User Host db Command Time State Info # root localhost events_test Query # NULL show processlist drop event закачка21; +create table t_16 (s1 int); +create trigger t_16_bi before insert on t_16 for each row create event e_16 on schedule every 1 second do set @a=5; +ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger. +drop table t_16; drop database events_test; |