mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
716c1bce83
"set engine_condition_pushdown" is deprecated, engine condition pushdown is controlled by a new "set optimizer_switch=engine_condition_pushdown=on|off".
5 lines
253 B
Text
5 lines
253 B
Text
# check how --engine-condition-pushdown and --optimizer-switch
|
|
# influence each other when used together (last wins).
|
|
select @@session.engine_condition_pushdown,
|
|
@@global.engine_condition_pushdown,
|
|
@@session.optimizer_switch, @@global.optimizer_switch;
|