Commit 4dc49b95 authored by unknown's avatar unknown
Browse files

Merge bk-internal:/home/bk/mysql-5.0

into mysql.com:/home/mysqldev/tulin/mysql-5.0

parents 3f0fedc4 2be96196
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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'),
+4 −0
Original line number Diff line number Diff line
@@ -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;                                  
+0 −3
Original line number Diff line number Diff line
@@ -26,9 +26,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'),
+2 −2
Original line number Diff line number Diff line
@@ -2245,10 +2245,10 @@ void Dbdict::checkSchemaStatus(Signal* signal)
	  restartCreateTab(signal, tableId, oldEntry, false);
          return;
        }//if
      }
      ndbrequire(ok);
      break;
    }
    }
    case SchemaFile::DROP_TABLE_STARTED:
      jam();
    case SchemaFile::DROP_TABLE_COMMITTED:{