mirror of
https://github.com/MariaDB/server.git
synced 2025-07-10 04:22:00 +03:00
"set engine_condition_pushdown" is deprecated, engine condition pushdown is controlled by a new "set optimizer_switch=engine_condition_pushdown=on|off".
6 lines
501 B
Plaintext
6 lines
501 B
Plaintext
select @@session.engine_condition_pushdown,
|
|
@@global.engine_condition_pushdown,
|
|
@@session.optimizer_switch, @@global.optimizer_switch;
|
|
@@session.engine_condition_pushdown @@global.engine_condition_pushdown @@session.optimizer_switch @@global.optimizer_switch
|
|
1 1 index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on
|