26 lines
775 B
Plaintext
26 lines
775 B
Plaintext
# This tests the functionality of the Myisam engine
|
|
# These testcases also exist in InnoDB engine
|
|
# All tests are required to run with Myisam
|
|
# Hence MTR starts mysqld with MyISAM as default
|
|
|
|
--source include/force_myisam_default.inc
|
|
--source include/have_myisam.inc
|
|
|
|
#
|
|
# ICP/MyISAM tests (Index Condition Pushdown)
|
|
# (Runs with all 6.0 optimizer switches on)
|
|
#
|
|
|
|
--source include/have_semijoin.inc
|
|
--source include/have_materialization.inc
|
|
--source include/have_firstmatch.inc
|
|
--source include/have_loosescan.inc
|
|
--source include/have_index_condition_pushdown.inc
|
|
--source include/have_mrr.inc
|
|
|
|
set optimizer_switch='semijoin=on,materialization=on,firstmatch=on,loosescan=on,index_condition_pushdown=on,mrr=on';
|
|
|
|
--source include/icp_tests.inc
|
|
|
|
set optimizer_switch=default;
|