diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-02-05 15:06:11 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-02-05 15:06:11 -0300 |
commit | 308724bcc3b9c1aeb33ce04e232e5199518fa06a (patch) | |
tree | 5ac0ad35b336c9fec6429f584b66170e4f7c1842 | |
parent | 78a26c3edd85b439265c067c45f04ce017c2eaff (diff) | |
download | postgresql-308724bcc3b9c1aeb33ce04e232e5199518fa06a.tar.gz postgresql-308724bcc3b9c1aeb33ce04e232e5199518fa06a.zip |
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.sgml | 3 |
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 6dfb2e4d3e0..1b8beadbaa5 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> |