Skip to content

Commit c4f113e

Browse files
committed
Clean up newlines following left parentheses
Like commit c9d2977.
1 parent 3715850 commit c4f113e

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/backend/executor/nodeAgg.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2656,8 +2656,8 @@ agg_refill_hash_table(AggState *aggstate)
26562656
prepare_hash_slot(perhash,
26572657
aggstate->tmpcontext->ecxt_outertuple,
26582658
hashslot);
2659-
entry = LookupTupleHashEntryHash(
2660-
perhash->hashtable, hashslot, p_isnew, hash);
2659+
entry = LookupTupleHashEntryHash(perhash->hashtable, hashslot,
2660+
p_isnew, hash);
26612661

26622662
if (entry != NULL)
26632663
{

src/backend/replication/logical/reorderbuffer.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -2337,8 +2337,7 @@ ReorderBufferProcessTXN(ReorderBuffer *rb, ReorderBufferTXN *txn,
23372337

23382338
case REORDER_BUFFER_CHANGE_INVALIDATION:
23392339
/* Execute the invalidation messages locally */
2340-
ReorderBufferExecuteInvalidations(
2341-
change->data.inval.ninvalidations,
2340+
ReorderBufferExecuteInvalidations(change->data.inval.ninvalidations,
23422341
change->data.inval.invalidations);
23432342
break;
23442343

src/backend/storage/ipc/standby.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -821,8 +821,7 @@ ResolveRecoveryConflictWithBufferPin(void)
821821
* not be so harmful because the period that the buffer is kept pinned
822822
* is basically no so long. But we should fix this?
823823
*/
824-
SendRecoveryConflictWithBufferPin(
825-
PROCSIG_RECOVERY_CONFLICT_STARTUP_DEADLOCK);
824+
SendRecoveryConflictWithBufferPin(PROCSIG_RECOVERY_CONFLICT_STARTUP_DEADLOCK);
826825
}
827826

828827
/*

0 commit comments

Comments
 (0)