1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

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.
This commit is contained in:
Igor Babaev
2012-07-27 17:33:23 -07:00
parent 26947f5adb
commit 6eace757e9
7 changed files with 504 additions and 404 deletions

View File

@@ -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;