From c00cc899a11ea4322b6e7774c5ebf70eb15b4482 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Tue, 4 Nov 2025 13:38:22 +1100 Subject: [PATCH v2] Add curly brackets before ellipsis --- doc/src/sgml/ref/alter_publication.sgml | 2 +- doc/src/sgml/ref/create_publication.sgml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/alter_publication.sgml b/doc/src/sgml/ref/alter_publication.sgml index c36e754..971ba5f 100644 --- a/doc/src/sgml/ref/alter_publication.sgml +++ b/doc/src/sgml/ref/alter_publication.sgml @@ -30,7 +30,7 @@ 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 } [, ... ] 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