Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimization for the following SQL requries cond_push: SELECT * FROM ... WHERE MATCH(...) AGAINST(..) AND int_column = int_value ORDER BY ... LIMIT ...; Should we use SET GLOBAL optimizer_switch='engine_condition_pushdown=on'; instead to enable cond_push? MariaDB 5.5 disables cond_push by default. We can enable it by the above "SET" command or this change. MySQL doesn't disable cond_push... fixes #1315 Reported by Kazuhiko Shiozaki. Thanks!!!
- Loading branch information