Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 03713a3

Browse files
committed
formatting
1 parent 56187be commit 03713a3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

init.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -572,8 +572,8 @@ fetch_next_pair(CrossmatchScanState *scan_state)
572572

573573
foreach(l, scan_state->scan_tlist)
574574
{
575-
TargetEntry *target = (TargetEntry *) lfirst(l);
576-
Var *var = (Var *) target->expr;
575+
TargetEntry *target = (TargetEntry *) lfirst(l);
576+
Var *var = (Var *) target->expr;
577577

578578
if (var->varno == scan_state->outer_relid)
579579
{
@@ -588,8 +588,8 @@ fetch_next_pair(CrossmatchScanState *scan_state)
588588
}
589589

590590
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]);
593593
}
594594

595595
if (var->varno == scan_state->inner_relid)
@@ -605,8 +605,8 @@ fetch_next_pair(CrossmatchScanState *scan_state)
605605
}
606606

607607
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]);
610610
}
611611

612612
col_index++;

0 commit comments

Comments
 (0)