diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-02-06 21:22:49 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-02-06 21:22:49 +0000 |
commit | c87c31f10bfd77234b62175f03b9ae8a6f961411 (patch) | |
tree | a6ee16e6f1827719745b42c67ce88a242d0de745 | |
parent | 7449427a1e6a099bc7e76164cb99a01d5e87237b (diff) |
Ooops, forgot to update COPY reference page to mention column privileges.
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 0763abd645d..e7f76d3e581 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.84 2008/11/14 10:22:45 petere Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.85 2009/02/06 21:22:49 tgl Exp $ PostgreSQL documentation --> @@ -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> |