Commit 41021a0f authored by unknown's avatar unknown

test result updated


mysql-test/t/rpl_relayrotate.test:
  when mysqld has no innodb compiled in it's not a bug!
parent 3a4be004
......@@ -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");
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment