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:

parent
dcf8d0481e
commit
970ea4dbf2
@ -1,7 +1,5 @@
|
|||||||
use test;
|
use test;
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
Warnings:
|
|
||||||
Note 1051 Unknown table 't1'
|
|
||||||
create table t1 (id int primary key, value int, value2 int,
|
create table t1 (id int primary key, value int, value2 int,
|
||||||
value3 int, index(value,value2)) engine=innodb;
|
value3 int, index(value,value2)) engine=innodb;
|
||||||
insert into t1 values
|
insert into t1 values
|
||||||
|
@ -4,8 +4,9 @@
|
|||||||
# create test-bed to run test
|
# create test-bed to run test
|
||||||
#
|
#
|
||||||
use test;
|
use test;
|
||||||
|
--disable_warnings
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
|
--enable_warnings
|
||||||
create table t1 (id int primary key, value int, value2 int,
|
create table t1 (id int primary key, value int, value2 int,
|
||||||
value3 int, index(value,value2)) engine=innodb;
|
value3 int, index(value,value2)) engine=innodb;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user