1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

Revert "MCOL-1734 This patch fixes the error for NOT IN + subquery when outer query has NULLs in a key"

This reverts commit 5174c40bfe.
This commit is contained in:
Andrew Hutchings
2019-12-18 15:09:47 +02:00
parent d15560d9c0
commit 3fb01d5f60

View File

@@ -1190,7 +1190,7 @@ void BatchPrimitiveProcessor::executeTupleJoin()
*/ */
if (((!found || isNull) && !(joinTypes[j] & (LARGEOUTER | ANTI))) || if (((!found || isNull) && !(joinTypes[j] & (LARGEOUTER | ANTI))) ||
((joinTypes[j] & ANTI) && ((isNull && !(joinTypes[j] & MATCHNULLS)) || (found && !isNull)))) ((joinTypes[j] & ANTI) && ((isNull && (joinTypes[j] & MATCHNULLS)) || (found && !isNull))))
{ {
//cout << " - not in the result set\n"; //cout << " - not in the result set\n";
break; break;