Commit 9e122eff authored by unknown's avatar unknown

Fixed bug in sub select after last merge

parent 670321ce
......@@ -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;
}
}
}
}
......
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