From fbb5b638b2e9dde0694bbd706c08aa298852cdf1 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Tue, 12 Aug 2025 13:25:17 +1000 Subject: [PATCH v1] 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 d5ea383..2aedc99 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 802630f..3c2dd9a 100644 --- a/doc/src/sgml/ref/create_publication.sgml +++ b/doc/src/sgml/ref/create_publication.sgml @@ -28,7 +28,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 } [, ... ] -- 1.8.3.1