@@ -181,7 +181,7 @@ set_append_rel_pathlist(PlannerInfo *root, RelOptInfo *rel,
181
181
* if we have zero or one live subpath due to constraint exclusion.)
182
182
*/
183
183
if (subpaths_valid )
184
- add_path (rel , (Path * ) create_append_path (rel , subpaths , NULL , 0 ));
184
+ add_path (rel , (Path * ) create_append_path (rel , subpaths , NULL , false, NIL , 0 ));
185
185
186
186
/*
187
187
* Consider an append of partial unordered, unparameterized partial paths.
@@ -207,7 +207,7 @@ set_append_rel_pathlist(PlannerInfo *root, RelOptInfo *rel,
207
207
Assert (parallel_workers > 0 );
208
208
209
209
/* Generate a partial append path. */
210
- appendpath = create_append_path (rel , partial_subpaths , NULL ,
210
+ appendpath = create_append_path (rel , partial_subpaths , NULL , false, NIL ,
211
211
parallel_workers );
212
212
add_partial_path (rel , (Path * ) appendpath );
213
213
}
@@ -260,7 +260,7 @@ set_append_rel_pathlist(PlannerInfo *root, RelOptInfo *rel,
260
260
261
261
if (subpaths_valid )
262
262
add_path (rel , (Path * )
263
- create_append_path (rel , subpaths , required_outer , 0 ));
263
+ create_append_path (rel , subpaths , required_outer , false, NIL , 0 ));
264
264
}
265
265
}
266
266
@@ -1270,7 +1270,7 @@ mark_dummy_rel(RelOptInfo *rel)
1270
1270
rel -> partial_pathlist = NIL ;
1271
1271
1272
1272
/* Set up the dummy path */
1273
- add_path (rel , (Path * ) create_append_path (rel , NIL , NULL , 0 ));
1273
+ add_path (rel , (Path * ) create_append_path (rel , NIL , NULL , false, NIL , 0 ));
1274
1274
1275
1275
/* Set or update cheapest_total_path and related fields */
1276
1276
set_cheapest (rel );
0 commit comments