From 5dbb45664d2880c3aef64a2555ecce10e097c401 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Mon, 17 Jun 2019 10:26:59 -0400 Subject: [PATCH 3/8] document new binary option for CREATE SUBSCRIPTION document addition of binary column to pg_subscription --- doc/src/sgml/catalogs.sgml | 7 +++++++ doc/src/sgml/ref/alter_subscription.sgml | 4 ++-- doc/src/sgml/ref/create_subscription.sgml | 11 +++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 64614b569c..381a7e730b 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -6667,6 +6667,13 @@ SCRAM-SHA-256$<iteration count>:&l If true, the subscription is enabled and should be replicating. + + subbinary + bool + + If true, the subscription will request that the publisher send base types in binary format. + + subsynccommit text diff --git a/doc/src/sgml/ref/alter_subscription.sgml b/doc/src/sgml/ref/alter_subscription.sgml index 1b8beadbaa..66172a9b05 100644 --- a/doc/src/sgml/ref/alter_subscription.sgml +++ b/doc/src/sgml/ref/alter_subscription.sgml @@ -164,8 +164,8 @@ ALTER SUBSCRIPTION name RENAME TO < This clause alters parameters originally set by . See there for more - information. The allowed options are slot_name and - synchronous_commit + information. The allowed options are slot_name, + synchronous_commit and binary diff --git a/doc/src/sgml/ref/create_subscription.sgml b/doc/src/sgml/ref/create_subscription.sgml index 1a90c244fb..1059370a2c 100644 --- a/doc/src/sgml/ref/create_subscription.sgml +++ b/doc/src/sgml/ref/create_subscription.sgml @@ -128,6 +128,17 @@ CREATE SUBSCRIPTION subscription_name + + binary (boolean) + + + Specifies whether the subscription will request the publisher send + the base types in binary or not. The default + is false. + + + + slot_name (string) -- 2.20.1 (Apple Git-117)