1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

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

Fix misplaced `DBUG_RETURN` in `Alter_table_statement::execute`.
This commit is contained in:
Daniele Sciascia
2018-05-23 14:13:11 +02:00
committed by Jan Lindström
parent 4d2b552369
commit e88e26b424

View File

@@ -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 @@ error:
DBUG_RETURN(TRUE); DBUG_RETURN(TRUE);
} }
#endif /* WITH_WSREP */ #endif /* WITH_WSREP */
DBUG_RETURN(result);
} }