Doc: Add missing pgoutput options.
authorAmit Kapila
Tue, 26 Dec 2023 05:15:34 +0000 (10:45 +0530)
committerAmit Kapila
Tue, 26 Dec 2023 05:15:34 +0000 (10:45 +0530)
We forgot to update the docs while adding new options in pgoutput.

Author: Emre Hasegeli
Reviewed-by: Peter Smith, Amit Kapila
Backpatch-through: 12
Discussion: https://postgr.es/m/CAE2gYzwdwtUbs-tPSV-QBwgTubiyGD2ZGsSnAVsDfAGGLDrGOA%40mail.gmail.com

doc/src/sgml/logical-replication.sgml
doc/src/sgml/protocol.sgml

index 1ac374ce40c00ea3358e057f442faa179f71ebd8..77c74045688838e9451add7b042558c080c07633 100644 (file)
    implemented by walsender and apply
    processes.  The walsender process starts logical decoding (described
    in ) of the WAL and loads the standard
-   logical decoding plugin (pgoutput).  The plugin transforms the changes read
+   logical decoding output plugin (pgoutput).  The plugin
+   transforms the changes read
    from WAL to the logical replication protocol
    (see ) and filters the data
    according to the publication specification.  The data is then continuously
index 8670230d48d3c8ac30c50d47cd7b6c2be809f85a..a22c8520c004b4fe33b580ec63499635e0cdbb38 100644 (file)
@@ -2518,7 +2518,10 @@ The commands accepted in replication mode are:
        option_name
        
         
-         The name of an option passed to the slot's logical decoding plugin.
+         The name of an option passed to the slot's logical decoding output
+         plugin.  See  for
+         options that are accepted by the standard (pgoutput)
+         plugin.
         
        
       
@@ -2863,12 +2866,18 @@ The commands accepted in replication mode are:
   the physical streaming replication protocol.
  
 
+  PostgreSQL logical decoding supports output
+  plugins.  pgoutput is the standard one used for
+  the built-in logical replication.
+
  
   Logical Streaming Replication Parameters
 
   
-   The logical replication START_REPLICATION command
-   accepts following parameters:
+   Using the START_REPLICATION command,
+   pgoutput accepts the following options:
 
    
     
@@ -2878,7 +2887,7 @@ The commands accepted in replication mode are:
      
       
        Protocol version. Currently only version 1 is
-       supported.
+       supported.  A valid version is required.
       
      
     
@@ -2892,6 +2901,7 @@ The commands accepted in replication mode are:
        Comma separated list of publication names for which to subscribe
        (receive changes). The individual publication names are treated
        as standard objects names and can be quoted the same as needed.
+       At least one publication name is required.