From aaeaf47f5e3fea01d5741daeda804c9cd080b453 Mon Sep 17 00:00:00 2001 From: Khanna Date: Mon, 2 Dec 2024 14:21:16 +0530 Subject: [PATCH v4] DOCS-Fix There is a discrepancy in the pg_createsubscriber documentation on the PostgreSQLwebsite: https://www.postgresql.org/docs/17/app-pgcreatesubscriber.html The options mentioned in the documentation:- 'publication-name' and 'subscription-name' do not align with the actual options provided by the tool:- '--publication' and '--subscription'. The changes in the Patch ensure the documentation accurately reflects the tool's behavior and includes proper option names for clarity. --- doc/src/sgml/ref/pg_createsubscriber.sgml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/ref/pg_createsubscriber.sgml b/doc/src/sgml/ref/pg_createsubscriber.sgml index 04af154c4b..d6b89fe273 100644 --- a/doc/src/sgml/ref/pg_createsubscriber.sgml +++ b/doc/src/sgml/ref/pg_createsubscriber.sgml @@ -407,11 +407,11 @@ PostgreSQL documentation Create a publication and replication slot for each specified database on the source server. Each publication is created using FOR ALL - TABLES. If option is - not specified, it has the following name pattern: + TABLES. If the is not + specified, it has the following name pattern: pg_createsubscriber_%u_%x (parameter: database oid, random int). - If is not specified, the + If the is not specified, the replication slot has the following name pattern: pg_createsubscriber_%u_%x (parameters: database oid, random int). @@ -446,7 +446,7 @@ PostgreSQL documentation Create a subscription for each specified database on the target server. - If is not specified, the subscription + If the is not specified, the subscription has the following name pattern: pg_createsubscriber_%u_%x (parameters: database oid, random int). -- 2.41.0.windows.3