diff options
-rw-r--r-- | doc/src/sgml/postgres-fdw.sgml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/postgres-fdw.sgml b/doc/src/sgml/postgres-fdw.sgml index 372236ec13c..d43ea71407f 100644 --- a/doc/src/sgml/postgres-fdw.sgml +++ b/doc/src/sgml/postgres-fdw.sgml @@ -437,7 +437,11 @@ OPTIONS (ADD password_required 'false'); </para> <para> - This option also applies when copying into foreign tables. + This option also applies when copying into foreign tables. In that case + the actual number of rows <filename>postgres_fdw</filename> copies at + once is determined in a similar way to the insert case, but it is + limited to at most 1000 due to implementation restrictions of the + <command>COPY</command> command. </para> </listitem> </varlistentry> |