#2968 disable warnings refs[t:2968]

git-svn-id: file:///svn/mysql/tests/mysql-test@24920 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Rich Prohaska 2010-10-27 18:45:26 +00:00
parent 576193095f
commit f213466611
4 changed files with 18 additions and 0 deletions

View file

@ -1,7 +1,9 @@
# test that the query planner picks clustering keys for joins
# create table s
--disable_warnings
drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb;
# populate table s
@ -20,7 +22,9 @@ while ($a) {
}
# create table t
--disable_warnings
drop table if exists t;
--enable_warnings
create table t like s;
insert into t select * from s;

View file

@ -1,7 +1,9 @@
# test that the query planner picks clustering keys for joins
# create table s
--disable_warnings
drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb;
# populate table s
@ -20,7 +22,9 @@ while ($a) {
}
# create table t
--disable_warnings
drop table if exists t;
--enable_warnings
create table t like s;
insert into t select * from s;

View file

@ -1,7 +1,9 @@
# test that the query planner picks clustering keys for joins
# create table s
--disable_warnings
drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb;
# populate table s
@ -20,7 +22,9 @@ while ($a) {
}
# create table t
--disable_warnings
drop table if exists t;
--enable_warnings
create table t like s;
insert into t select * from s;

View file

@ -1,7 +1,9 @@
# test that the query planner picks clustering keys for 3 table joins
# create table s
--disable_warnings
drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb;
# populate table s
@ -20,12 +22,16 @@ while ($a) {
}
# create table t
--disable_warnings
drop table if exists t;
--enable_warnings
create table t like s;
insert into t select * from s;
# create table u;
--disable_warnings
drop table if exists u;
--enable_warnings
create table u like s;
insert into u select * from s;