From 1265776a4d3075636a6090aece68b3528a126f92 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Wed, 5 Feb 2020 15:06:11 -0300 Subject: [PATCH] ALTER SUBSCRIPTION / REFRESH docs: explain copy_data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The docs are ambiguous as to which tables would be copied over when the copy_data parameter is true in ALTER SUBSCRIPTION ... REFRESH PUBLICATION. Make it clear that it only applies to tables which are new in the publication. Author: David Christensen (reword by Álvaro Herrera) Discussion: https://postgr.es/m/95339420-7F09-4F8C-ACC0-8F1CFAAD9CD7@endpoint.com --- doc/src/sgml/ref/alter_subscription.sgml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/alter_subscription.sgml b/doc/src/sgml/ref/alter_subscription.sgml index 6dfb2e4d3e..1b8beadbaa 100644 --- a/doc/src/sgml/ref/alter_subscription.sgml +++ b/doc/src/sgml/ref/alter_subscription.sgml @@ -128,7 +128,8 @@ ALTER SUBSCRIPTION name RENAME TO < Specifies whether the existing data in the publications that are being subscribed to should be copied once the replication starts. - The default is true. + The default is true. (Previously subscribed + tables are not copied.)