diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-03-31 13:03:18 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-03-31 13:03:18 -0400 |
commit | 3f0e4be453ffd27b5f5e6c115172091abda3a38f (patch) | |
tree | 3ec1be55193fba9b5c91f4e720e9ba6969e99e1d /src | |
parent | 14d02f0bb352d70d50106e153aca4af9c4b0b842 (diff) | |
download | postgresql-3f0e4be453ffd27b5f5e6c115172091abda3a38f.tar.gz postgresql-3f0e4be453ffd27b5f5e6c115172091abda3a38f.zip |
Fix thinko in logical decoding code.
Andres Freund
Diffstat (limited to 'src')
-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 8c6c6c2bb3b..1d08b50da39 100644 --- a/src/backend/replication/logical/logical.c +++ b/src/backend/replication/logical/logical.c @@ -402,7 +402,7 @@ CreateDecodingContext(XLogRecPtr start_lsn, /* call output plugin initialization callback */ old_context = MemoryContextSwitchTo(ctx->context); if (ctx->callbacks.startup_cb != NULL) - startup_cb_wrapper(ctx, &ctx->options, true); + startup_cb_wrapper(ctx, &ctx->options, false); MemoryContextSwitchTo(old_context); ereport(LOG, |