Skip to content

Commit 74d6c53

Browse files
Remove FIXME tag
1 parent 3f0e2e6 commit 74d6c53

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/backend/optimizer/plan/subselect.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1457,9 +1457,9 @@ convert_ANY_sublink_to_join(PlannerInfo *root, SubLink *sublink,
14571457
return NULL;
14581458

14591459
/*
1460-
* GPDB_92_MERGE_FIXME:
14611460
* Check if the Vars in upper level (upper_varnos_level1) is a
1462-
* subset of the Vars in test expression.
1461+
* subset of the Vars in test expression. If not, we cannot do
1462+
* pullup.
14631463
*
14641464
* This prevents the pull up of ANY sublinks
14651465
* in the following query:
@@ -1473,7 +1473,6 @@ convert_ANY_sublink_to_join(PlannerInfo *root, SubLink *sublink,
14731473
*
14741474
* If upper_varnos_level1 is NULL, this seems to be uncorrelated,
14751475
* and we should do pullup.
1476-
*
14771476
*/
14781477
upper_varnos_level1 = pull_upper_varnos(sublink->subselect);
14791478
if (!bms_is_subset(upper_varnos_level1, upper_varnos))

0 commit comments

Comments
 (0)