1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fixed accidentally inverted assert condition

This commit is contained in:
bell@sanja.is.com.ua
2002-11-05 11:24:44 +02:00
parent ded512d5a1
commit a90b923bef

View File

@ -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);
}