Commit e88e26b4 authored by Daniele Sciascia's avatar Daniele Sciascia Committed by Jan Lindström

Follow up to previous commit for codership/mysql-wsrep#332

Fix misplaced `DBUG_RETURN` in `Alter_table_statement::execute`.
parent 4d2b5523
...@@ -123,6 +123,7 @@ bool Alter_table_statement::execute(THD *thd) ...@@ -123,6 +123,7 @@ bool Alter_table_statement::execute(THD *thd)
select_lex->order_list.first, select_lex->order_list.first,
lex->ignore, lex->online); lex->ignore, lex->online);
DBUG_RETURN(result);
#ifdef WITH_WSREP #ifdef WITH_WSREP
error: error:
{ {
...@@ -130,5 +131,4 @@ bool Alter_table_statement::execute(THD *thd) ...@@ -130,5 +131,4 @@ bool Alter_table_statement::execute(THD *thd)
DBUG_RETURN(TRUE); DBUG_RETURN(TRUE);
} }
#endif /* WITH_WSREP */ #endif /* WITH_WSREP */
DBUG_RETURN(result);
} }
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