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/replication/logical/logical.c | |
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/backend/replication/logical/logical.c')
-rw-r--r-- | src/backend/replication/logical/logical.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/logical.c b/src/backend/replication/logical/logical.c index b82580fbcdf..9eb5cd5ee4d 100644 --- a/src/backend/replication/logical/logical.c +++ b/src/backend/replication/logical/logical.c @@ -125,7 +125,7 @@ StartupDecodingContext(List *output_plugin_options, slot = MyReplicationSlot; context = AllocSetContextCreate(CurrentMemoryContext, - "Changeset Extraction Context", + "Logical Decoding Context", ALLOCSET_DEFAULT_MINSIZE, ALLOCSET_DEFAULT_INITSIZE, ALLOCSET_DEFAULT_MAXSIZE); |