diff options
author | Etsuro Fujita | 2022-02-16 06:15:07 +0000 |
---|---|---|
committer | Etsuro Fujita | 2022-02-16 06:15:07 +0000 |
commit | 48bf71a1293e774cd4c77e9e4647c321d75d983e (patch) | |
tree | 56ff224a1199c44b5ed0b612d0b6ca07f5f5cc97 /doc/src | |
parent | efae4401c4305ad5bcb05f803dc2576a4b346c8d (diff) |
Doc: Update documentation for modifying postgres_fdw foreign tables.
Document that they can be modified using COPY as well.
Back-patch to v11 where commit 3d956d956 added support for COPY in
postgres_fdw.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/postgres-fdw.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/postgres-fdw.sgml b/doc/src/sgml/postgres-fdw.sgml index c251a57d567..35610651018 100644 --- a/doc/src/sgml/postgres-fdw.sgml +++ b/doc/src/sgml/postgres-fdw.sgml @@ -63,9 +63,10 @@ <para> Now you need only <command>SELECT</command> from a foreign table to access the data stored in its underlying remote table. You can also modify - the remote table using <command>INSERT</command>, <command>UPDATE</command>, or - <command>DELETE</command>. (Of course, the remote user you have specified - in your user mapping must have privileges to do these things.) + the remote table using <command>INSERT</command>, <command>UPDATE</command>, + <command>DELETE</command>, or <command>COPY</command>. (Of course, the + remote user you have specified in your user mapping must have privileges to + do these things.) </para> <para> |