Small fix to innodb.test that Heikki probably simply forgot to commit.

parent 5f5203b3
......@@ -1809,5 +1809,6 @@ show variables like "innodb_thread_sleep_delay";
Variable_name Value
innodb_thread_sleep_delay 10000
create table t1 (v varchar(16384)) engine=innodb;
drop table t1;
create table t1 (a bit, key(a)) engine=innodb;
ERROR 42000: The storage engine for the table doesn't support BIT FIELD
......@@ -1291,8 +1291,8 @@ show variables like "innodb_thread_sleep_delay";
#eval set storage_engine=$default;
# InnoDB specific varchar tests
--error 1074
create table t1 (v varchar(16384)) engine=innodb;
drop table t1;
# The following should be moved to type_bit.test when innodb will support it
--error 1178
......
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