From 57fb1d677d98d9c02565e47afdbf5e887b095c9f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 16 Jun 2017 21:04:34 -0400 Subject: [PATCH] doc: Add note that COPY commands are published as INSERTs --- doc/src/sgml/ref/create_publication.sgml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/src/sgml/ref/create_publication.sgml b/doc/src/sgml/ref/create_publication.sgml index c5299dd74e5..62a5fd432e6 100644 --- a/doc/src/sgml/ref/create_publication.sgml +++ b/doc/src/sgml/ref/create_publication.sgml @@ -162,6 +162,11 @@ CREATE PUBLICATION name UPDATE, or it may not be published at all. + + COPY ... FROM commands are published + as INSERT operations. + + TRUNCATE and DDL operations are not published.