Skip to content

Commit a99448a

Browse files
committed
Don't wake up logical replication launcher unnecessarily
In CREATE SUBSCRIPTION, only wake up the launcher when the subscription is enabled. Author: Fujii Masao <masao.fujii@gmail.com>
1 parent 54affb4 commit a99448a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/commands/subscriptioncmds.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,8 @@ CreateSubscription(CreateSubscriptionStmt *stmt, bool isTopLevel)
452452

453453
heap_close(rel, RowExclusiveLock);
454454

455-
ApplyLauncherWakeupAtCommit();
455+
if (enabled)
456+
ApplyLauncherWakeupAtCommit();
456457

457458
ObjectAddressSet(myself, SubscriptionRelationId, subid);
458459

0 commit comments

Comments
 (0)