Commit 63905f14 authored by Jan Lindström's avatar Jan Lindström

Add forgotten test case change (add more).

parent a1a32f8f
...@@ -53,6 +53,10 @@ ERROR HY000: The table 't1' is full ...@@ -53,6 +53,10 @@ ERROR HY000: The table 't1' is full
alter table t1 add testcol3 int; alter table t1 add testcol3 int;
ERROR HY000: The table 't1' is full ERROR HY000: The table 't1' is full
call innodb_insert_proc(20000); call innodb_insert_proc(20000);
set autocommit=0;
call innodb_insert_proc(20000);
commit;
set autocommit=1;
set DEBUG_DBUG=''; set DEBUG_DBUG='';
drop procedure innodb_insert_proc; drop procedure innodb_insert_proc;
drop table t1; drop table t1;
......
...@@ -58,6 +58,11 @@ alter table t1 add testcol2 int; ...@@ -58,6 +58,11 @@ alter table t1 add testcol2 int;
alter table t1 add testcol3 int; alter table t1 add testcol3 int;
--error 0,1114 --error 0,1114
call innodb_insert_proc(20000); call innodb_insert_proc(20000);
set autocommit=0;
--error 0,1114
call innodb_insert_proc(20000);
commit;
set autocommit=1;
set DEBUG_DBUG=''; set DEBUG_DBUG='';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment