File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ create_crossmatch_path(PlannerInfo *root,
330
330
result -> cpath .path .parent = joinrel ;
331
331
result -> cpath .path .param_info = param_info ;
332
332
result -> cpath .path .pathkeys = NIL ;
333
- result -> cpath .path .pathtarget = & joinrel -> reltarget ;
333
+ result -> cpath .path .pathtarget = joinrel -> reltarget ;
334
334
result -> cpath .path .rows = joinrel -> rows ;
335
335
result -> cpath .flags = 0 ;
336
336
result -> cpath .methods = & crossmatch_path_methods ;
@@ -486,7 +486,7 @@ create_crossmatch_plan(PlannerInfo *root,
486
486
cscan -> scan .scanrelid = 0 ;
487
487
488
488
/* tlist of the 'virtual' join rel we'll have to build and scan */
489
- cscan -> custom_scan_tlist = make_tlist_from_pathtarget (& rel -> reltarget );
489
+ cscan -> custom_scan_tlist = make_tlist_from_pathtarget (rel -> reltarget );
490
490
491
491
cscan -> flags = best_path -> flags ;
492
492
cscan -> methods = & crossmatch_plan_methods ;
You can’t perform that action at this time.
0 commit comments