summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2020-02-05 15:06:11 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2020-02-05 15:06:11 -0300
commitc2ef3ab838323e9b5d1e6b49ffbf3db64370f8fe (patch)
tree17ab1d543ad9d17a9545bfc8b3700d7f1d54c669
parentd8efc5900f7c0a952b7ff3f6e8d8ea2e77fe2986 (diff)
ALTER SUBSCRIPTION / REFRESH docs: explain copy_data
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
-rw-r--r--doc/src/sgml/ref/alter_subscription.sgml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_subscription.sgml b/doc/src/sgml/ref/alter_subscription.sgml
index b1b7765d76c..4cc3c261bad 100644
--- a/doc/src/sgml/ref/alter_subscription.sgml
+++ b/doc/src/sgml/ref/alter_subscription.sgml
@@ -128,7 +128,8 @@ ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> RENAME TO <
<para>
Specifies whether the existing data in the publications that are
being subscribed to should be copied once the replication starts.
- The default is <literal>true</literal>.
+ The default is <literal>true</literal>. (Previously subscribed
+ tables are not copied.)
</para>
</listitem>
</varlistentry>