Commit 81694833 authored by unknown's avatar unknown

Fixed accidentally inverted assert condition

parent 1f176ab2
......@@ -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