Fixed bug in sub select after last merge

This commit is contained in:
monty@narttu.mysql.fi 2003-10-07 14:04:59 +03:00
parent 4b491cb788
commit 0091fa2e32

View File

@ -1098,7 +1098,11 @@ int subselect_indexsubquery_engine::exec()
null_finding= 1;
/* Check if there exists a row with a null value in the index */
if ((error= safe_index_read(tab)))
{
if (error < 0)
error= 0; // Key not found
break;
}
}
}
}