mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
#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:
parent
576193095f
commit
f213466611
4 changed files with 18 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue