diff options
author | Tom Lane | 2009-02-06 21:22:49 +0000 |
---|---|---|
committer | Tom Lane | 2009-02-06 21:22:49 +0000 |
commit | 00968e648dc03d81306b112f1ca0a95bbe0f29a7 (patch) | |
tree | 342d410d4183e49e3883ca1bdc7e85f4cc6e8261 | |
parent | 159036181b9ed36ddf6dfa591ae40c48ea57ac32 (diff) |
Ooops, forgot to update COPY reference page to mention column privileges.
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 19085ea29d..75e7a816f7 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -304,7 +304,8 @@ COPY <replaceable class="parameter">count</replaceable> You must have select privilege on the table whose values are read by <command>COPY TO</command>, and insert privilege on the table into which values - are inserted by <command>COPY FROM</command>. + are inserted by <command>COPY FROM</command>. It is sufficient + to have column privileges on the column(s) listed in the command. </para> <para> |