| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/t/ |
Upload File : |
#
# MRR/InnoDB tests.
# (Turns off all other 6.0 optimizer switches than MRR and ICP)
#
--source include/have_innodb.inc
--source include/have_mrr.inc
--source include/have_index_condition_pushdown.inc
set optimizer_switch='index_condition_pushdown=on,mrr=on,mrr_cost_based=off';
--disable_query_log
if (`select locate('semijoin', @@optimizer_switch) > 0`)
{
set optimizer_switch='semijoin=off';
}
if (`select locate('materialization', @@optimizer_switch) > 0`)
{
set optimizer_switch='materialization=off';
}
--enable_query_log
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;