19 lines
491 B
Plaintext
19 lines
491 B
Plaintext
#
|
|
# MRR/InnoDB tests.
|
|
# (Runs with all 6.0 optimizer switches on)
|
|
#
|
|
|
|
--source include/no_valgrind_without_big.inc
|
|
|
|
set optimizer_switch='semijoin=on,materialization=on,firstmatch=on,loosescan=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on';
|
|
|
|
set @save_storage_engine= @@default_storage_engine;
|
|
set default_storage_engine=InnoDB;
|
|
|
|
--source include/mrr_tests.inc
|
|
--source include/mrr_innodb_tests.inc
|
|
|
|
set default_storage_engine= @save_storage_engine;
|
|
set optimizer_switch=default;
|
|
|