diff options
Diffstat (limited to 'mysql-test/main/trigger.result')
-rw-r--r-- | mysql-test/main/trigger.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/main/trigger.result b/mysql-test/main/trigger.result index 912b3383adf..49b8b9977fe 100644 --- a/mysql-test/main/trigger.result +++ b/mysql-test/main/trigger.result @@ -2424,6 +2424,13 @@ CREATE TRIGGER t1_trigger BEFORE INSERT ON t1 FOR EACH ROW BEGIN END; INSERT INTO t1 () VALUES (); DROP TABLE t1; # +# Bug#33141958 - THE FIRST ASAN UAF ISSUE OF MYSQL SERVER +# +create table t1 (a int); +create trigger tr1 after insert on t1 for each row alter table t1 tablespace s2; +ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger +drop table t1; +# # End of 10.2 tests # # |