diff options
author | Andres Freund <andres@anarazel.de> | 2014-06-12 13:23:46 +0200 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2014-06-12 13:33:27 +0200 |
commit | e04a9ccd2ccd6e31cc4af6b08257a0a186d0fce8 (patch) | |
tree | 0b4cfac319bf2fe9789704ccdb34210ede5ad9fe /src/backend/access/transam/xlog.c | |
parent | 4d92b158555452ba62ee3caf5c5546fd4a8cba5b (diff) | |
download | postgresql-e04a9ccd2ccd6e31cc4af6b08257a0a186d0fce8.tar.gz postgresql-e04a9ccd2ccd6e31cc4af6b08257a0a186d0fce8.zip |
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/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 9eca63cbbfa..3f92482b42d 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6270,7 +6270,7 @@ StartupXLOG(void) * Initialize replication slots, before there's a chance to remove * required resources. */ - StartupReplicationSlots(checkPoint.redo); + StartupReplicationSlots(); /* * Startup logical state, needs to be setup now so we have proper data |