test result updated

mysql-test/t/rpl_relayrotate.test:
  when mysqld has no innodb compiled in it's not a bug!
This commit is contained in:
unknown 2003-06-11 17:07:34 +02:00
commit 41021a0fc8
2 changed files with 3 additions and 1 deletions

View file

@ -29,7 +29,7 @@ drop table t1,t2,t3
CREATE TABLE t1 (a char(257) default "hello");
ERROR 42000: Too big column length for column 'a' (max = 255). Use BLOB instead
CREATE TABLE t2 (a blob default "hello");
ERROR 42000: BLOB column 'a' can't have a default value
ERROR 42000: BLOB/TEXT column 'a' can't have a default value
drop table if exists t1,t2;
create table t1 (nr int(5) not null auto_increment,b blob,str char(10), primary key (nr));
insert into t1 values (null,"a","A");

View file

@ -14,7 +14,9 @@ source include/master-slave.inc;
connection slave;
stop slave;
connection master;
--disable_warnings
create table t1 (a int) type=innodb;
--enable_warnings
let $1=8000;
disable_query_log;
begin;