diff options
author | Michael Paquier | 2019-04-16 06:08:38 +0000 |
---|---|---|
committer | Michael Paquier | 2019-04-16 06:08:38 +0000 |
commit | 5ed4b123b6a678bc6243047846870f7f46e9c67b (patch) | |
tree | cda2fa578e43f9a3a397e0722710fe265fbe69e9 | |
parent | e12a4726127b90b8fc5e75690fe4527f1866412d (diff) |
Remove duplicate assignment when initializing logical decoder context
The private data in the WAL reader is already getting set when
allocating it.
Author: Antonin Houska
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/30563.1555329094@localhost
-rw-r--r-- | src/backend/replication/logical/logical.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/replication/logical/logical.c b/src/backend/replication/logical/logical.c index 424fe86a1b..acb4d9a106 100644 --- a/src/backend/replication/logical/logical.c +++ b/src/backend/replication/logical/logical.c @@ -178,8 +178,6 @@ StartupDecodingContext(List *output_plugin_options, (errcode(ERRCODE_OUT_OF_MEMORY), errmsg("out of memory"))); - ctx->reader->private_data = ctx; - ctx->reorder = ReorderBufferAllocate(); ctx->snapshot_builder = AllocateSnapshotBuilder(ctx->reorder, xmin_horizon, start_lsn, |