Skip to content

Commit

Permalink
DB-713 separate some long running tokudb tests so that valgrind runs …
Browse files Browse the repository at this point in the history
…without --big-test can exclude them
  • Loading branch information
prohaska committed Aug 27, 2014
1 parent 1826cca commit b585b4f
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb.bugs/t/part_index_scan.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# verify that index scans on parititions are not slow
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/have_partition.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2,t3;
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb/t/bf_create_select_hash_part.test
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Verify that index and range scans are not slow
# on tables during create select statements
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/have_partition.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2,t3;
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb/t/bf_create_select_nonpart.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Verify that index and range scans are not slow
# on tables during create select statements
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2;
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb/t/bf_create_select_range_part.test
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Verify that index and range scans are not slow
# on tables during create select statements
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/have_partition.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2;
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb/t/bf_create_temp_select_nonpart.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Verify that index and range scans are not slow
# on temporary tables during create select statements
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2;
Expand Down
1 change: 1 addition & 0 deletions mysql-test/suite/tokudb/t/bf_delete_nonpart.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# at least twice as fast

source include/have_tokudb.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
# due to tokudb bulk fetch not being used.
# In this test case, the on duplicate key condition does not need to fire
# since the performance of the embedded select statement is all we are measuring.

source include/have_tokudb.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2;
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb/t/bf_insert_select_nonpart.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Verify that index and range scans are not slow
# on tables during insert select statements
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2;
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb/t/bf_replace_select_nonpart.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Verify that index and range scans are not slow
# on tables during replace select and insert ignore statements
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2;
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/suite/tokudb/t/bf_select_part.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
# on tables during create select statements
# against hash and range partitioned tables
# due to tokudb bulk fetch not being used

source include/have_tokudb.inc;
source include/have_partition.inc;
source include/big_test.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t,t1,t2,t3;
Expand Down

0 comments on commit b585b4f

Please sign in to comment.