diff options
author | Alvaro Herrera | 2022-05-13 21:52:35 +0000 |
---|---|---|
committer | Alvaro Herrera | 2022-05-13 21:52:35 +0000 |
commit | c4f113e8fef900e9e7e7c77a3a21db1535e5be72 (patch) | |
tree | eb52fd1d6fd1295d14187c2e3c4fe6dae417ccaa | |
parent | 3715850ecc524544546e696bb0a7bbc44095d12a (diff) |
Clean up newlines following left parentheses
Like commit c9d297751959.
-rw-r--r-- | src/backend/executor/nodeAgg.c | 4 | ||||
-rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 3 | ||||
-rw-r--r-- | src/backend/storage/ipc/standby.c | 3 |
3 files changed, 4 insertions, 6 deletions
diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c index 3223d9b24e..139b2bd5f9 100644 --- a/src/backend/executor/nodeAgg.c +++ b/src/backend/executor/nodeAgg.c @@ -2656,8 +2656,8 @@ agg_refill_hash_table(AggState *aggstate) prepare_hash_slot(perhash, aggstate->tmpcontext->ecxt_outertuple, hashslot); - entry = LookupTupleHashEntryHash( - perhash->hashtable, hashslot, p_isnew, hash); + entry = LookupTupleHashEntryHash(perhash->hashtable, hashslot, + p_isnew, hash); if (entry != NULL) { diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index da7bd1321c..8da5f9089c 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -2337,8 +2337,7 @@ ReorderBufferProcessTXN(ReorderBuffer *rb, ReorderBufferTXN *txn, case REORDER_BUFFER_CHANGE_INVALIDATION: /* Execute the invalidation messages locally */ - ReorderBufferExecuteInvalidations( - change->data.inval.ninvalidations, + ReorderBufferExecuteInvalidations(change->data.inval.ninvalidations, change->data.inval.invalidations); break; diff --git a/src/backend/storage/ipc/standby.c b/src/backend/storage/ipc/standby.c index 8c5e8432e7..671b00a33c 100644 --- a/src/backend/storage/ipc/standby.c +++ b/src/backend/storage/ipc/standby.c @@ -821,8 +821,7 @@ ResolveRecoveryConflictWithBufferPin(void) * not be so harmful because the period that the buffer is kept pinned * is basically no so long. But we should fix this? */ - SendRecoveryConflictWithBufferPin( - PROCSIG_RECOVERY_CONFLICT_STARTUP_DEADLOCK); + SendRecoveryConflictWithBufferPin(PROCSIG_RECOVERY_CONFLICT_STARTUP_DEADLOCK); } /* |