diff options
| author | Andres Freund | 2014-06-12 11:23:46 +0000 |
|---|---|---|
| committer | Andres Freund | 2014-06-12 11:33:27 +0000 |
| commit | e04a9ccd2ccd6e31cc4af6b08257a0a186d0fce8 (patch) | |
| tree | 0b4cfac319bf2fe9789704ccdb34210ede5ad9fe /src/include | |
| parent | 4d92b158555452ba62ee3caf5c5546fd4a8cba5b (diff) | |
Consistency improvements for slot and decoding code.
Change the order of checks in similar functions to be the same; remove
a parameter that's not needed anymore; rename a memory context and
expand a couple of comments.
Per review comments from Amit Kapila
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/replication/slot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/replication/slot.h b/src/include/replication/slot.h index 341e829bbb3..c129a4a7718 100644 --- a/src/include/replication/slot.h +++ b/src/include/replication/slot.h @@ -164,7 +164,7 @@ extern void ReplicationSlotsComputeRequiredLSN(void); extern XLogRecPtr ReplicationSlotsComputeLogicalRestartLSN(void); extern bool ReplicationSlotsCountDBSlots(Oid dboid, int *nslots, int *nactive); -extern void StartupReplicationSlots(XLogRecPtr checkPointRedo); +extern void StartupReplicationSlots(void); extern void CheckPointReplicationSlots(void); extern void CheckSlotRequirements(void); |
