mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Fixed accidentally inverted assert condition
This commit is contained in:
@@ -1047,7 +1047,7 @@ void st_select_lex_node::exclude()
|
|||||||
st_select_lex* st_select_lex_node::select_lex()
|
st_select_lex* st_select_lex_node::select_lex()
|
||||||
{
|
{
|
||||||
DBUG_ENTER("st_select_lex_node::select_lex (never should be called)");
|
DBUG_ENTER("st_select_lex_node::select_lex (never should be called)");
|
||||||
DBUG_ASSERT(1);
|
DBUG_ASSERT(0);
|
||||||
DBUG_RETURN(0);
|
DBUG_RETURN(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user