Doc: Update documentation for modifying postgres_fdw foreign tables.
authorEtsuro Fujita
Wed, 16 Feb 2022 06:15:04 +0000 (15:15 +0900)
committerEtsuro Fujita
Wed, 16 Feb 2022 06:15:04 +0000 (15:15 +0900)
Document that they can be modified using COPY as well.

Back-patch to v11 where commit 3d956d956 added support for COPY in
postgres_fdw.

doc/src/sgml/postgres-fdw.sgml

index 4de2bfc0621b110f7e4b50177efd36ff380ef76d..f9fa8bc779467e4a3d9fac1daf74b9ee296ef43f 100644 (file)
  
   Now you need only SELECT from a foreign table to access
   the data stored in its underlying remote table.  You can also modify
-  the remote table using INSERTUPDATE, or
-  DELETE.  (Of course, the remote user you have specified
-  in your user mapping must have privileges to do these things.)
+  the remote table using INSERTUPDATE,
+  DELETE, or COPY.  (Of course, the
+  remote user you have specified in your user mapping must have privileges to
+  do these things.)