From 07f2634e2c88583835d80779cd7bc697aa1578b3 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 21 Feb 2005 16:39:13 +0400 Subject: [PATCH] A fix (bug #7661: 'classic' shows different test effects which must be cared for) "create table ta(a bit...) engine=innodb" moved to innodb.test mysql-test/r/innodb.result: A fix (bug #7661: 'classic' shows different test effects which must be cared for) mysql-test/r/type_bit.result: A fix (bug #7661: 'classic' shows different test effects which must be cared for) mysql-test/t/innodb.test: A fix (bug #7661: 'classic' shows different test effects which must be cared for) mysql-test/t/type_bit.test: A fix (bug #7661: 'classic' shows different test effects which must be cared for) --- mysql-test/r/innodb.result | 2 ++ mysql-test/r/type_bit.result | 2 -- mysql-test/t/innodb.test | 4 ++++ mysql-test/t/type_bit.test | 4 +--- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index 13914384d8d..d65ce794a75 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -1798,3 +1798,5 @@ Variable_name Value innodb_thread_sleep_delay 10000 create table t1 (v varchar(16384)) engine=innodb; ERROR 42000: Column length too big for column 'v' (max = 255); use BLOB instead +create table t1 (a bit, key(a)) engine=innodb; +ERROR 42000: The storage engine for the table doesn't support BIT FIELD diff --git a/mysql-test/r/type_bit.result b/mysql-test/r/type_bit.result index 88bb04fefba..dde50a1ee00 100644 --- a/mysql-test/r/type_bit.result +++ b/mysql-test/r/type_bit.result @@ -44,8 +44,6 @@ t1 CREATE TABLE `t1` ( `a` bit(1) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 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 create table t1 (a bit(64)); insert into t1 values (b'1111111111111111111111111111111111111111111111111111111111111111'), diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test index 3cfd173165b..6514f3d5c94 100644 --- a/mysql-test/t/innodb.test +++ b/mysql-test/t/innodb.test @@ -1278,3 +1278,7 @@ show variables like "innodb_thread_sleep_delay"; # InnoDB specific varchar tests --error 1074 create table t1 (v varchar(16384)) engine=innodb; + +# The following should be moved to type_bit.test when innodb will support it +--error 1178 +create table t1 (a bit, key(a)) engine=innodb; diff --git a/mysql-test/t/type_bit.test b/mysql-test/t/type_bit.test index fed15806765..70656849a33 100644 --- a/mysql-test/t/type_bit.test +++ b/mysql-test/t/type_bit.test @@ -1,3 +1,4 @@ +-- source include/have_innodb.inc # # testing of the BIT column type # @@ -26,9 +27,6 @@ create table t1 (a bit(0)); show create table t1; drop table t1; ---error 1178 -create table t1 (a bit, key(a)) engine=innodb; - create table t1 (a bit(64)); insert into t1 values (b'1111111111111111111111111111111111111111111111111111111111111111'),