diff options
author | unknown <ramil@mysql.com> | 2005-02-21 16:39:13 +0400 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-02-21 16:39:13 +0400 |
commit | 07f2634e2c88583835d80779cd7bc697aa1578b3 (patch) | |
tree | 62bd7745def2f8581f9a831c780be0be7270bb73 /mysql-test/t/innodb.test | |
parent | b3b5f8fb651e40506ab51acb12796b0f7d8d98ef (diff) | |
download | mariadb-git-07f2634e2c88583835d80779cd7bc697aa1578b3.tar.gz |
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)
Diffstat (limited to 'mysql-test/t/innodb.test')
-rw-r--r-- | mysql-test/t/innodb.test | 4 |
1 files changed, 4 insertions, 0 deletions
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; |