Re: DOCS - DROP SUBSCRIPTION does not document parameter "IF EXISTS" - Mailing list pgsql-hackers

From Chao Li
Subject Re: DOCS - DROP SUBSCRIPTION does not document parameter "IF EXISTS"
Date
Msg-id B28C43D4-B5D0-43FC-9DCB-2A01417A4EF3@gmail.com
Whole thread Raw
In response to DOCS - DROP SUBSCRIPTION does not document parameter "IF EXISTS"  (Peter Smith <smithpb2250@gmail.com>)
List pgsql-hackers

> On Apr 1, 2026, at 14:16, Peter Smith <smithpb2250@gmail.com> wrote:
>
> Hi.
>
> I happened to notice that the "DROP PUBLICATION IF EXISTS" parameter
> is documented [1]
> ------
> IF EXISTS
> Do not throw an error if the publication does not exist. A notice is
> issued in this case.
> ------
>
> But, the equivalent "DROP SUBSCRIPTION IF EXISTS" parameter
> description is missing [2].
>
> ~~~
>
> PSA a patch to add similar documentation for DROP SUBSCRIPTION IF EXISTS.
>
> ======
> [1] https://www.postgresql.org/docs/devel/sql-droppublication.html
> [2] https://www.postgresql.org/docs/devel/sql-dropsubscription.html
>
> Kind Regards,
> Peter Smith.
> Fujitsu Australia
> <v1-0001-DOCS-Add-missing-description-for-DROP-SUBSCRIPTIO.patch>

Looks good. The patch uses the same phrase for “if exists” as the doc of “drop publication”. And I verified that a
noticeis issued: 

```
evantest=# drop publication if exists aaa;
NOTICE:  publication "aaa" does not exist, skipping
DROP PUBLICATION
evantest=# drop subscription if exists aaa;
NOTICE:  subscription "aaa" does not exist, skipping
DROP SUBSCRIPTION
```

Best regards,
--
Chao Li (Evan)
HighGo Software Co., Ltd.
https://www.highgo.com/







pgsql-hackers by date:

Previous
From: shveta malik
Date:
Subject: Re: synchronized_standby_slots behavior inconsistent with quorum-based synchronous replication
Next
From: Fujii Masao
Date:
Subject: Re: Reduce log level of some logical decoding messages to DEBUG1