From ce39496b98391595e0ec38440d9a2ec2c3b60b10 Mon Sep 17 00:00:00 2001 From: Nisha Moond Date: Tue, 2 Jun 2026 15:58:46 +0530 Subject: [PATCH v1] doc: add missing EXCEPT parameter entry in ALTER PUBLICATION The EXCEPT clause was included in the syntax and described briefly in the command description, but was missing from the Parameters section. Add a parameter entry describing its behavior in ALTER PUBLICATION. --- doc/src/sgml/ref/alter_publication.sgml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/src/sgml/ref/alter_publication.sgml b/doc/src/sgml/ref/alter_publication.sgml index 52114a16a39..3c04d0a9c59 100644 --- a/doc/src/sgml/ref/alter_publication.sgml +++ b/doc/src/sgml/ref/alter_publication.sgml @@ -198,6 +198,21 @@ ALTER PUBLICATION name RENAME TO + + EXCEPT + + + This clause specifies a list of tables to be excluded from the + publication when used with SET ALL TABLES. If + EXCEPT is specified, the existing exclusion list is + replaced with the specified tables. If EXCEPT is + omitted, any existing table exclusions are removed. See + for + details. + + + + SET ( publication_parameter [= value] [, ... ] ) -- 2.50.1 (Apple Git-155)