removed warning message as they have changed in mysql-5.6 and mysql-trunk and...

removed warning message as they have changed in mysql-5.6 and mysql-trunk and this is left over from changes that got up-merged 
parent ed6732dd
use test;
drop table if exists t1;
Warnings:
Note 1051 Unknown table 't1'
create table t1 (id int primary key, value int, value2 int,
value3 int, index(value,value2)) engine=innodb;
insert into t1 values
......
......@@ -4,8 +4,9 @@
# create test-bed to run test
#
use test;
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 (id int primary key, value int, value2 int,
value3 int, index(value,value2)) engine=innodb;
......
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