Commit f2134666 authored by Rich Prohaska's avatar Rich Prohaska

#2968 disable warnings refs[t:2968]

git-svn-id: file:///svn/mysql/tests/mysql-test@24920 c7de825b-a66e-492c-adef-691d508d4ae1
parent 57619309
# test that the query planner picks clustering keys for joins # test that the query planner picks clustering keys for joins
# create table s # create table s
--disable_warnings
drop table if exists s; drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb; create table s (a int, b int, c int) engine=tokudb;
# populate table s # populate table s
...@@ -20,7 +22,9 @@ while ($a) { ...@@ -20,7 +22,9 @@ while ($a) {
} }
# create table t # create table t
--disable_warnings
drop table if exists t; drop table if exists t;
--enable_warnings
create table t like s; create table t like s;
insert into t select * from s; insert into t select * from s;
......
# test that the query planner picks clustering keys for joins # test that the query planner picks clustering keys for joins
# create table s # create table s
--disable_warnings
drop table if exists s; drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb; create table s (a int, b int, c int) engine=tokudb;
# populate table s # populate table s
...@@ -20,7 +22,9 @@ while ($a) { ...@@ -20,7 +22,9 @@ while ($a) {
} }
# create table t # create table t
--disable_warnings
drop table if exists t; drop table if exists t;
--enable_warnings
create table t like s; create table t like s;
insert into t select * from s; insert into t select * from s;
......
# test that the query planner picks clustering keys for joins # test that the query planner picks clustering keys for joins
# create table s # create table s
--disable_warnings
drop table if exists s; drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb; create table s (a int, b int, c int) engine=tokudb;
# populate table s # populate table s
...@@ -20,7 +22,9 @@ while ($a) { ...@@ -20,7 +22,9 @@ while ($a) {
} }
# create table t # create table t
--disable_warnings
drop table if exists t; drop table if exists t;
--enable_warnings
create table t like s; create table t like s;
insert into t select * from s; insert into t select * from s;
......
# test that the query planner picks clustering keys for 3 table joins # test that the query planner picks clustering keys for 3 table joins
# create table s # create table s
--disable_warnings
drop table if exists s; drop table if exists s;
--enable_warnings
create table s (a int, b int, c int) engine=tokudb; create table s (a int, b int, c int) engine=tokudb;
# populate table s # populate table s
...@@ -20,12 +22,16 @@ while ($a) { ...@@ -20,12 +22,16 @@ while ($a) {
} }
# create table t # create table t
--disable_warnings
drop table if exists t; drop table if exists t;
--enable_warnings
create table t like s; create table t like s;
insert into t select * from s; insert into t select * from s;
# create table u; # create table u;
--disable_warnings
drop table if exists u; drop table if exists u;
--enable_warnings
create table u like s; create table u like s;
insert into u select * from s; insert into u select * from s;
......
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