@@ -670,8 +670,8 @@ try_partial_nestloop_path(PlannerInfo *root,
670
670
/*
671
671
* If the inner path is parameterized, the parameterization must be fully
672
672
* satisfied by the proposed outer path. Parameterized partial paths are
673
- * not supported. The caller should already have verified that no
674
- * extra_lateral_rels are required here.
673
+ * not supported. The caller should already have verified that no lateral
674
+ * rels are required here.
675
675
*/
676
676
Assert (bms_is_empty (joinrel -> lateral_relids ));
677
677
if (inner_path -> param_info != NULL )
@@ -984,8 +984,8 @@ try_partial_hashjoin_path(PlannerInfo *root,
984
984
/*
985
985
* If the inner path is parameterized, the parameterization must be fully
986
986
* satisfied by the proposed outer path. Parameterized partial paths are
987
- * not supported. The caller should already have verified that no
988
- * extra_lateral_rels are required here.
987
+ * not supported. The caller should already have verified that no lateral
988
+ * rels are required here.
989
989
*/
990
990
Assert (bms_is_empty (joinrel -> lateral_relids ));
991
991
if (inner_path -> param_info != NULL )
@@ -1714,7 +1714,7 @@ match_unsorted_outer(PlannerInfo *root,
1714
1714
* partial path and the joinrel is parallel-safe. However, we can't
1715
1715
* handle JOIN_UNIQUE_OUTER, because the outer path will be partial, and
1716
1716
* therefore we won't be able to properly guarantee uniqueness. Nor can
1717
- * we handle extra_lateral_rels , since partial paths must not be
1717
+ * we handle joins needing lateral rels , since partial paths must not be
1718
1718
* parameterized. Similarly, we can't handle JOIN_FULL and JOIN_RIGHT,
1719
1719
* because they can produce false null extended rows.
1720
1720
*/
0 commit comments