diff options
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r-- | mysql-test/r/create.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index ec70dba674f..e90dba00206 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -2120,6 +2120,11 @@ CREATE TRIGGER f BEFORE INSERT ON t1 FOR EACH ROW BEGIN UPDATE A SET `pk`=1 WHERE `pk`=0 ; END ;| +ERROR HY000: Trigger already exists +CREATE TRIGGER f1 BEFORE INSERT ON t1 FOR EACH ROW +BEGIN +UPDATE A SET `pk`=1 WHERE `pk`=0 ; +END ;| ERROR 42000: This version of MariaDB doesn't yet support 'multiple triggers with the same action time and event for one table' DROP TABLE t1; DROP TABLE B; |