mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
17 lines
382 B
Text
17 lines
382 B
Text
#
|
|
# ICP/Maria tests (Index Condition Pushdown)
|
|
#
|
|
|
|
--source include/have_maria.inc
|
|
|
|
set @save_storage_engine= @@storage_engine;
|
|
set storage_engine=Maria;
|
|
set @maria_icp_tmp=@@optimizer_switch;
|
|
set optimizer_switch='mrr=on,mrr_sort_keys=on,index_condition_pushdown=on';
|
|
|
|
--source include/icp_tests.inc
|
|
|
|
set storage_engine= @save_storage_engine;
|
|
set optimizer_switch=@maria_icp_tmp;
|
|
|
|
|