1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Manual fixes after merging patch for bug #8406 "Triggers crash if referencing

a table" with main tree.
This commit is contained in:
dlenev@mysql.com
2005-07-09 23:11:17 +04:00
parent 75b8d4fa08
commit 4e8c22f296
6 changed files with 18 additions and 28 deletions

View File

@@ -573,12 +573,3 @@ i k ts
1 1 0000-00-00 00:00:00
2 2 0000-00-00 00:00:00
drop table t1, t2;
drop function if exists bug5893;
create table t1 (col1 int, col2 int);
insert into t1 values (1, 2);
create function bug5893 () returns int return 5;
create trigger t1_bu before update on t1 for each row set new.col1= bug5893();
drop function bug5893;
update t1 set col2 = 4;
ERROR 42000: FUNCTION test.bug5893 does not exist
drop table t1;