1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/revoke.sgml,v 1.23 2002/11/21 23:34:43 petere Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/revoke.sgml,v 1.24 2003/01/10 11:02:51 petere Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -20,22 +20,27 @@ REVOKE { { SELECT | INSERT | UPDATE | DELETE | RULE | REFERENCES | TRIGGER }
20
20
[,...] | ALL [ PRIVILEGES ] }
21
21
ON [ TABLE ] <replaceable class="PARAMETER">tablename</replaceable> [, ...]
22
22
FROM { <replaceable class="PARAMETER">username</replaceable> | GROUP <replaceable class="PARAMETER">groupname</replaceable> | PUBLIC } [, ...]
23
+ [ RESTRICT ]
23
24
24
25
REVOKE { { CREATE | TEMPORARY | TEMP } [,...] | ALL [ PRIVILEGES ] }
25
26
ON DATABASE <replaceable>dbname</replaceable> [, ...]
26
27
FROM { <replaceable class="PARAMETER">username</replaceable> | GROUP <replaceable class="PARAMETER">groupname</replaceable> | PUBLIC } [, ...]
28
+ [ RESTRICT ]
27
29
28
30
REVOKE { EXECUTE | ALL [ PRIVILEGES ] }
29
31
ON FUNCTION <replaceable>funcname</replaceable> ([<replaceable>type</replaceable>, ...]) [, ...]
30
32
FROM { <replaceable class="PARAMETER">username</replaceable> | GROUP <replaceable class="PARAMETER">groupname</replaceable> | PUBLIC } [, ...]
33
+ [ RESTRICT ]
31
34
32
35
REVOKE { USAGE | ALL [ PRIVILEGES ] }
33
36
ON LANGUAGE <replaceable>langname</replaceable> [, ...]
34
37
FROM { <replaceable class="PARAMETER">username</replaceable> | GROUP <replaceable class="PARAMETER">groupname</replaceable> | PUBLIC } [, ...]
38
+ [ RESTRICT ]
35
39
36
40
REVOKE { { CREATE | USAGE } [,...] | ALL [ PRIVILEGES ] }
37
41
ON SCHEMA <replaceable>schemaname</replaceable> [, ...]
38
42
FROM { <replaceable class="PARAMETER">username</replaceable> | GROUP <replaceable class="PARAMETER">groupname</replaceable> | PUBLIC } [, ...]
43
+ [ RESTRICT ]
39
44
</synopsis>
40
45
</refsynopsisdiv>
41
46
@@ -63,6 +68,11 @@ REVOKE { { CREATE | USAGE } [,...] | ALL [ PRIVILEGES ] }
63
68
See the description of the <xref linkend="sql-grant" endterm="sql-grant-title"> command for
64
69
the meaning of the privilege types.
65
70
</para>
71
+
72
+ <para>
73
+ The <literal>RESTRICT</literal> key word is currently only noise.
74
+ See also the compatibility notes below.
75
+ </para>
66
76
</refsect1>
67
77
68
78
<refsect1 id="SQL-REVOKE-notes">
0 commit comments