File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -572,8 +572,8 @@ fetch_next_pair(CrossmatchScanState *scan_state)
572
572
573
573
foreach (l , scan_state -> scan_tlist )
574
574
{
575
- TargetEntry * target = (TargetEntry * ) lfirst (l );
576
- Var * var = (Var * ) target -> expr ;
575
+ TargetEntry * target = (TargetEntry * ) lfirst (l );
576
+ Var * var = (Var * ) target -> expr ;
577
577
578
578
if (var -> varno == scan_state -> outer_relid )
579
579
{
@@ -588,8 +588,8 @@ fetch_next_pair(CrossmatchScanState *scan_state)
588
588
}
589
589
590
590
values [col_index ] = heap_getattr (& htup_outer , var -> varattno ,
591
- scan_state -> outer -> rd_att ,
592
- & nulls [col_index ]);
591
+ scan_state -> outer -> rd_att ,
592
+ & nulls [col_index ]);
593
593
}
594
594
595
595
if (var -> varno == scan_state -> inner_relid )
@@ -605,8 +605,8 @@ fetch_next_pair(CrossmatchScanState *scan_state)
605
605
}
606
606
607
607
values [col_index ] = heap_getattr (& htup_inner , var -> varattno ,
608
- scan_state -> outer -> rd_att ,
609
- & nulls [col_index ]);
608
+ scan_state -> outer -> rd_att ,
609
+ & nulls [col_index ]);
610
610
}
611
611
612
612
col_index ++ ;
You can’t perform that action at this time.
0 commit comments