Skip to content

Commit 79718c1

Browse files
committed
Fix variable initialization with ALTER SUBSCRIPTION DROP PUBLICATION
copy_data is not a supported option with this sub-command of ALTER SUBSCRIPTION, which would not make a variable related to it initialized after parsing the option set in DefElems. A refresh could then refer to it. Author: Ranier Vilela Reviewed-by: Peter Smith Discussion: https://postgr.es/m/CAEudQAp5P8nr=ze2Gv=BMj=DJFZnrvendZCZcC-fos3QiDe2sg@mail.gmail.com
1 parent 09a69f6 commit 79718c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/subscriptioncmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ AlterSubscription(AlterSubscriptionStmt *stmt, bool isTopLevel)
949949
case ALTER_SUBSCRIPTION_DROP_PUBLICATION:
950950
{
951951
bool isadd = stmt->kind == ALTER_SUBSCRIPTION_ADD_PUBLICATION;
952-
bool copy_data;
952+
bool copy_data = false;
953953
bool refresh;
954954
List *publist;
955955

0 commit comments

Comments
 (0)