1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bit type support for non-MyISAM tables.

This commit is contained in:
ramil@mysql.com
2005-04-12 12:27:43 +05:00
parent 4caef066c7
commit c4376b2bc6
12 changed files with 682 additions and 23 deletions

View File

@@ -1300,8 +1300,3 @@ eval set storage_engine=$default;
# InnoDB specific varchar tests
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
create table t1 (a bit, key(a)) engine=innodb;