File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/backend/optimizer/path Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1469,17 +1469,17 @@ hash_inner_and_outer(PlannerInfo *root,
1469
1469
/*
1470
1470
* Normally, given that the joinrel is parallel-safe, the cheapest
1471
1471
* total inner path will also be parallel-safe, but if not, we'll
1472
- * have to search cheapest_parameterized_paths for the cheapest
1473
- * safe, unparameterized inner path. If doing JOIN_UNIQUE_INNER,
1474
- * we can't use any alternative inner path.
1472
+ * have to search for the cheapest safe, unparameterized inner
1473
+ * path. If doing JOIN_UNIQUE_INNER, we can't use any alternative
1474
+ * inner path.
1475
1475
*/
1476
1476
if (cheapest_total_inner -> parallel_safe )
1477
1477
cheapest_safe_inner = cheapest_total_inner ;
1478
1478
else if (save_jointype != JOIN_UNIQUE_INNER )
1479
1479
{
1480
1480
ListCell * lc ;
1481
1481
1482
- foreach (lc , innerrel -> cheapest_parameterized_paths )
1482
+ foreach (lc , innerrel -> pathlist )
1483
1483
{
1484
1484
Path * innerpath = (Path * ) lfirst (lc );
1485
1485
You can’t perform that action at this time.
0 commit comments