Commit 5f94533b authored by Nikita Malyavin's avatar Nikita Malyavin

hotfix: DBUG_RETURN

parent 929c2e06
...@@ -5117,7 +5117,7 @@ bool DML_prelocking_strategy::handle_table(THD *thd, ...@@ -5117,7 +5117,7 @@ bool DML_prelocking_strategy::handle_table(THD *thd,
if (table->triggers-> if (table->triggers->
add_tables_and_routines_for_triggers(thd, prelocking_ctx, table_list)) add_tables_and_routines_for_triggers(thd, prelocking_ctx, table_list))
return TRUE; DBUG_RETURN(TRUE);
} }
if (table->file->referenced_by_foreign_key()) if (table->file->referenced_by_foreign_key())
...@@ -5125,7 +5125,7 @@ bool DML_prelocking_strategy::handle_table(THD *thd, ...@@ -5125,7 +5125,7 @@ bool DML_prelocking_strategy::handle_table(THD *thd,
if (prepare_fk_prelocking_list(thd, prelocking_ctx, table_list, if (prepare_fk_prelocking_list(thd, prelocking_ctx, table_list,
need_prelocking, need_prelocking,
table_list->trg_event_map)) table_list->trg_event_map))
return TRUE; DBUG_RETURN(TRUE);
} }
} }
else if (table_list->slave_fk_event_map && else if (table_list->slave_fk_event_map &&
...@@ -5134,7 +5134,7 @@ bool DML_prelocking_strategy::handle_table(THD *thd, ...@@ -5134,7 +5134,7 @@ bool DML_prelocking_strategy::handle_table(THD *thd,
if (prepare_fk_prelocking_list(thd, prelocking_ctx, table_list, if (prepare_fk_prelocking_list(thd, prelocking_ctx, table_list,
need_prelocking, need_prelocking,
table_list->slave_fk_event_map)) table_list->slave_fk_event_map))
return TRUE; DBUG_RETURN(TRUE);
} }
/* Open any tables used by DEFAULT (like sequence tables) */ /* Open any tables used by DEFAULT (like sequence tables) */
......
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