diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-08-12 20:02:09 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-08-12 20:02:09 +0000 |
commit | 282a5884de21e20cdc849457270c89ed05543722 (patch) | |
tree | 6c773c013adabbd3b03e82907abf26415747f1b7 /doc/src | |
parent | c024fa4cb5699a656421370a7e307a6a7fa7bbab (diff) | |
download | postgresql-282a5884de21e20cdc849457270c89ed05543722.tar.gz postgresql-282a5884de21e20cdc849457270c89ed05543722.zip |
Correct description of sequence privileges.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/grant.sgml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/grant.sgml b/doc/src/sgml/ref/grant.sgml index 5a66973e32d..4ed7e6d2cc7 100644 --- a/doc/src/sgml/ref/grant.sgml +++ b/doc/src/sgml/ref/grant.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.27 2002/08/10 03:56:23 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/grant.sgml,v 1.28 2002/08/12 20:02:09 petere Exp $ PostgreSQL documentation --> @@ -83,7 +83,8 @@ GRANT { { CREATE | USAGE } [,...] | ALL [ PRIVILEGES ] } <para> Allows <xref linkend="sql-select" endterm="sql-select-title"> from any column of the specified table, view, or sequence. Also allows the use of - <xref linkend="sql-copy" endterm="sql-copy-title"> TO. + <xref linkend="sql-copy" endterm="sql-copy-title"> TO. For sequences, this + privilege also allows the use of the <function>currval</function> function. </para> </listitem> </varlistentry> @@ -106,8 +107,8 @@ GRANT { { CREATE | USAGE } [,...] | ALL [ PRIVILEGES ] } specified table. <literal>SELECT ... FOR UPDATE</literal> also requires this privilege (besides the <literal>SELECT</literal> privilege). For sequences, this - privilege allows the use of <function>nextval</function>, - <function>currval</function> and <function>setval</function>. + privilege allows the use of the <function>nextval</function> and + <function>setval</function> functions. </para> </listitem> </varlistentry> |