summaryrefslogtreecommitdiff
path: root/mysql-test/t/stat_tables_par_innodb.test
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2012-07-27 17:33:23 -0700
committerIgor Babaev <igor@askmonty.org>2012-07-27 17:33:23 -0700
commit6eace757e94e9236c792d3ba718aebb91c9cce77 (patch)
treeb37ccc7b28b4e20944bbf0476c76feda1c934718 /mysql-test/t/stat_tables_par_innodb.test
parent26947f5adb72cd6b8190ee5d5e6d11be6a2448b5 (diff)
downloadmariadb-git-6eace757e94e9236c792d3ba718aebb91c9cce77.tar.gz
Moved the test cases for parallel execution from stat_tables.test
into a separate file stat_tables_par.test because the test cases could not be run with embedded server.
Diffstat (limited to 'mysql-test/t/stat_tables_par_innodb.test')
-rw-r--r--mysql-test/t/stat_tables_par_innodb.test12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/t/stat_tables_par_innodb.test b/mysql-test/t/stat_tables_par_innodb.test
new file mode 100644
index 00000000000..fd5833e4aaf
--- /dev/null
+++ b/mysql-test/t/stat_tables_par_innodb.test
@@ -0,0 +1,12 @@
+--source include/have_innodb.inc
+
+SET SESSION STORAGE_ENGINE='InnoDB';
+
+set @save_optimizer_switch_for_stat_tables_test=@@optimizer_switch;
+set optimizer_switch='extended_keys=on';
+
+--source stat_tables_par.test
+
+set optimizer_switch=@save_optimizer_switch_for_stat_tables_test;
+
+SET SESSION STORAGE_ENGINE=DEFAULT;