Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3f0e4be

Browse files
committed
Fix thinko in logical decoding code.
Andres Freund
1 parent 14d02f0 commit 3f0e4be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/replication/logical/logical.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ CreateDecodingContext(XLogRecPtr start_lsn,
402402
/* call output plugin initialization callback */
403403
old_context = MemoryContextSwitchTo(ctx->context);
404404
if (ctx->callbacks.startup_cb != NULL)
405-
startup_cb_wrapper(ctx, &ctx->options, true);
405+
startup_cb_wrapper(ctx, &ctx->options, false);
406406
MemoryContextSwitchTo(old_context);
407407

408408
ereport(LOG,

0 commit comments

Comments
 (0)