mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
14 lines
413 B
Text
14 lines
413 B
Text
#
|
|
# Run subselect.test without semi-join and materialization optimizations
|
|
# (test in-to-exists)
|
|
|
|
|
|
set @optimizer_switch_for_subselect_test='materialization=off,semijoin=off,subquery_cache=off,mrr=on,mrr_sort_keys=on,index_condition_pushdown=on';
|
|
|
|
set join_cache_level=1;
|
|
set @join_cache_level_for_subselect_test=@@join_cache_level;
|
|
|
|
--source t/subselect.test
|
|
|
|
set @optimizer_switch_for_subselect_test=null;
|
|
|