Skip to content

Commit 63905f1

Browse files
author
Jan Lindström
committed
Add forgotten test case change (add more).
1 parent a1a32f8 commit 63905f1

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

mysql-test/suite/innodb/r/innodb-alter-table-disk-full.result

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ ERROR HY000: The table 't1' is full
5353
alter table t1 add testcol3 int;
5454
ERROR HY000: The table 't1' is full
5555
call innodb_insert_proc(20000);
56+
set autocommit=0;
57+
call innodb_insert_proc(20000);
58+
commit;
59+
set autocommit=1;
5660
set DEBUG_DBUG='';
5761
drop procedure innodb_insert_proc;
5862
drop table t1;

mysql-test/suite/innodb/t/innodb-alter-table-disk-full.test

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ alter table t1 add testcol2 int;
5858
alter table t1 add testcol3 int;
5959
--error 0,1114
6060
call innodb_insert_proc(20000);
61+
set autocommit=0;
62+
--error 0,1114
63+
call innodb_insert_proc(20000);
64+
commit;
65+
set autocommit=1;
6166

6267
set DEBUG_DBUG='';
6368

0 commit comments

Comments
 (0)