You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
Merge pull request #987 from LinuxJedi/MCOL-3677
Revert "MCOL-1734 This patch fixes the error for NOT IN + subquery wh…
This commit is contained in:
@@ -1195,7 +1195,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;
|
||||||
|
Reference in New Issue
Block a user