Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.80) (envelope-from ) id 1Zvv79-0003tf-3h for pgsql-docs@arkaria.postgresql.org; Mon, 09 Nov 2015 22:40:39 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.84) (envelope-from ) id 1Zvv78-0006rQ-HZ for pgsql-docs@arkaria.postgresql.org; Mon, 09 Nov 2015 22:40:38 +0000 Received: from makus.postgresql.org ([2001:4800:1501:1::229]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84) (envelope-from ) id 1Zvv78-0006rK-4C for pgsql-docs@postgresql.org; Mon, 09 Nov 2015 22:40:38 +0000 Received: from mail-wm0-x22e.google.com ([2a00:1450:400c:c09::22e]) by makus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.84) (envelope-from ) id 1Zvv70-0006JL-FZ for pgsql-docs@postgresql.org; Mon, 09 Nov 2015 22:40:36 +0000 Received: by wmnn186 with SMTP id n186so129997073wmn.1 for ; Mon, 09 Nov 2015 14:40:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:content-type:subject:message-id:date:to:mime-version; bh=FjOiQsQ9RJvDs+3v297EDs7pIWZ3kQFZX/V5fX8oJ1Q=; b=CyA+YGHRSfL0ITjqV6TV19vHQKeIU+wJq7Nw+fAEn3IK4qXwNbX0C4GMVDTKKNlBkl xJcgkc2Yrq+EYa7sMbI6QjQGBQxFVLLZEShapBSNSq2D1EgM/mhtpfOXnXqiJt7xxGAZ lR6Ks8k+zEnletw3DREOZKQWnmLnnN2mz2EIUQnq4OAZmSzYF0ZGSh9fCSskMFwVYuus EPX/rYIWOu8fjR7jrBW9Dv1zvSs835CQG90rWN3XqIYLHQF/D/mFQAx+Ybowv4DG1aRo dRkorhUS4q3IyxeRcewPTiLomxFGA3OFJ1HAzNPErX9PXwl1tAdU++EXebZ6/i17wAcW biiA== X-Received: by 10.28.138.140 with SMTP id m134mr897692wmd.74.1447108829034; Mon, 09 Nov 2015 14:40:29 -0800 (PST) Received: from [172.16.0.143] (102.red-80-29-123.adsl.static.ccgg.telefonica.net. [80.29.123.102]) by smtp.gmail.com with ESMTPSA id om1sm266792wjc.2.2015.11.09.14.40.28 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 09 Nov 2015 14:40:28 -0800 (PST) From: Daniel Gustafsson Content-Type: multipart/mixed; boundary="Apple-Mail=_F37D263A-6E5A-45AA-AB93-F0EBF3CCC698" Subject: Documentation on Streaming Replication interface for Logical Decoding Message-Id: <5F0285CB-3926-4DF7-9DE0-CEEBC1DE3AEB@yesql.se> Date: Mon, 9 Nov 2015 23:40:27 +0100 To: pgsql-docs@postgresql.org Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2102\)) X-Mailer: Apple Mail (2.2102) X-Pg-Spam-Score: -1.9 (-) List-Archive: List-Help: List-ID: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: X-Mailing-List: pgsql-docs Precedence: bulk Sender: pgsql-docs-owner@postgresql.org --Apple-Mail=_F37D263A-6E5A-45AA-AB93-F0EBF3CCC698 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 In section 46.3 (Streaming Replication Protocol Interface) the create comma= nd for logical slots, CREATE_REPLICATION_SLOT, is defined as taking =E2=80=9Co= ptions=E2=80=9D after the LOGICAL keyword when it in fact requires the plugin name. The st= art command is correctly listing the options but isn=E2=80=99t listing the requ= ired start position. The attached patch synchronizes these command signatures with the more deta= iled descriptions in section 50.3* (Streaming Replication Protocol). cheers ./daniel (*) Section number from the 9.5beta1 manual --Apple-Mail=_F37D263A-6E5A-45AA-AB93-F0EBF3CCC698 Content-Disposition: attachment; filename=log_dec_doc.diff Content-Type: application/octet-stream; x-unix-mode=0644; name="log_dec_doc.diff" Content-Transfer-Encoding: 7bit diff --git a/doc/src/sgml/logicaldecoding.sgml b/doc/src/sgml/logicaldecoding.sgml index 02794cc..01626aa 100644 --- a/doc/src/sgml/logicaldecoding.sgml +++ b/doc/src/sgml/logicaldecoding.sgml @@ -280,7 +280,7 @@ $ pg_recvlogical -d postgres --slot test --drop-slot The commands - CREATE_REPLICATION_SLOT slot_name LOGICAL options + CREATE_REPLICATION_SLOT slot_name LOGICAL output_plugin @@ -288,7 +288,7 @@ $ pg_recvlogical -d postgres --slot test --drop-slot - START_REPLICATION SLOT slot_name LOGICAL options + START_REPLICATION SLOT slot_name LOGICAL XXX/XXX [ plugin_options ] are used to create, drop, and stream changes from a replication --Apple-Mail=_F37D263A-6E5A-45AA-AB93-F0EBF3CCC698 Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 8bit MIME-Version: 1.0 -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs --Apple-Mail=_F37D263A-6E5A-45AA-AB93-F0EBF3CCC698--