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:29:19 +0200 |
commit | d52a6c4944c1d83cfaae53e20561c53220e7968b (patch) | |
tree | 3d15a0a70c87f16507c9cb9bb025bb74c0c7b508 /src/backend/access/transam/xlog.c | |
parent | 7f9fbb842b09da851e003a70c6c53fd8ca6c6f82 (diff) | |
download | postgresql-d52a6c4944c1d83cfaae53e20561c53220e7968b.tar.gz postgresql-d52a6c4944c1d83cfaae53e20561c53220e7968b.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 |