From 7b05b2bc1f4d044434a15e2f418f695636a42362 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Fri, 14 Nov 2025 12:15:13 +1100 Subject: [PATCH v3] Add curly brackets before ellipsis --- doc/src/sgml/ref/alter_publication.sgml | 4 ++-- doc/src/sgml/ref/create_publication.sgml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/ref/alter_publication.sgml b/doc/src/sgml/ref/alter_publication.sgml index 8dd250d..1275935 100644 --- a/doc/src/sgml/ref/alter_publication.sgml +++ b/doc/src/sgml/ref/alter_publication.sgml @@ -30,12 +30,12 @@ ALTER PUBLICATION name RENAME TO where publication_object is one of: - TABLE [ ONLY ] table_name [ * ] [ ( column_name [, ... ] ) ] [ WHERE ( expression ) ] [, ... ] + TABLE { [ ONLY ] table_name [ * ] [ ( column_name [, ... ] ) ] [ WHERE ( expression ) ] } [, ... ] TABLES IN SCHEMA { schema_name | CURRENT_SCHEMA } [, ... ] where publication_drop_object is one of: - TABLE [ ONLY ] table_name [ * ] [, ... ] + TABLE { [ ONLY ] table_name [ * ] } [, ... ] TABLES IN SCHEMA { schema_name | CURRENT_SCHEMA } [, ... ] diff --git a/doc/src/sgml/ref/create_publication.sgml b/doc/src/sgml/ref/create_publication.sgml index 66a70e5..cde4235 100644 --- a/doc/src/sgml/ref/create_publication.sgml +++ b/doc/src/sgml/ref/create_publication.sgml @@ -27,7 +27,7 @@ CREATE PUBLICATION name where publication_object is one of: - TABLE [ ONLY ] table_name [ * ] [ ( column_name [, ... ] ) ] [ WHERE ( expression ) ] [, ... ] + TABLE { [ ONLY ] table_name [ * ] [ ( column_name [, ... ] ) ] [ WHERE ( expression ) ] } [, ... ] TABLES IN SCHEMA { schema_name | CURRENT_SCHEMA } [, ... ] where all_publication_object is one of: -- 1.8.3.1