Commit acb2d4aa authored by Sergey Petrunya's avatar Sergey Petrunya

BUG#884631: Table elimination works 5.3 release builds even if turned off

- Make table elimination to actually switch itself on/off in release builds.
parent 57b3fefa
# #
# Table elimination (MWL#17) tests that need debug build # Table elimination (MWL#17) tests that need debug build
# #
--source include/have_debug.inc # In MariaDB 5.3, one can switch table_elimination on/off without debug, too:
## --source include/have_debug.inc
--disable_warnings --disable_warnings
drop table if exists t1, t2; drop table if exists t1, t2;
......
...@@ -588,10 +588,8 @@ void eliminate_tables(JOIN *join) ...@@ -588,10 +588,8 @@ void eliminate_tables(JOIN *join)
if (!join->outer_join) if (!join->outer_join)
DBUG_VOID_RETURN; DBUG_VOID_RETURN;
#ifndef DBUG_OFF
if (!optimizer_flag(thd, OPTIMIZER_SWITCH_TABLE_ELIMINATION)) if (!optimizer_flag(thd, OPTIMIZER_SWITCH_TABLE_ELIMINATION))
DBUG_VOID_RETURN; /* purecov: inspected */ DBUG_VOID_RETURN; /* purecov: inspected */
#endif
/* Find the tables that are referred to from WHERE/HAVING */ /* Find the tables that are referred to from WHERE/HAVING */
used_tables= (join->conds? join->conds->used_tables() : 0) | used_tables= (join->conds? join->conds->used_tables() : 0) |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment