Commit a90b923b authored by bell@sanja.is.com.ua's avatar bell@sanja.is.com.ua

Fixed accidentally inverted assert condition

parent ded512d5
......@@ -1047,7 +1047,7 @@ void st_select_lex_node::exclude()
st_select_lex* st_select_lex_node::select_lex()
{
DBUG_ENTER("st_select_lex_node::select_lex (never should be called)");
DBUG_ASSERT(1);
DBUG_ASSERT(0);
DBUG_RETURN(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