1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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

This commit is contained in:
Krunal Bauskar krunal.bauskar@oracle.com
2012-10-15 14:16:46 +05:30
parent dcf8d0481e
commit 970ea4dbf2
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,5 @@
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

View File

@ -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;