@@ -1692,8 +1692,7 @@ ALTER TABLE products RENAME TO items;
1692
1692
<literal>TRUNCATE</literal>, <literal>REFERENCES</literal>, <literal>TRIGGER</literal>,
1693
1693
<literal>CREATE</literal>, <literal>CONNECT</literal>, <literal>TEMPORARY</literal>,
1694
1694
<literal>EXECUTE</literal>, <literal>USAGE</literal>, <literal>SET</literal>,
1695
- <literal>ALTER SYSTEM</literal>, <literal>VACUUM</literal>, and
1696
- <literal>ANALYZE</literal>.
1695
+ <literal>ALTER SYSTEM</literal>, and <literal>MAINTAIN</literal>.
1697
1696
The privileges applicable to a particular
1698
1697
object vary depending on the object's type (table, function, etc.).
1699
1698
More detail about the meanings of these privileges appears below.
@@ -1985,19 +1984,13 @@ REVOKE ALL ON accounts FROM PUBLIC;
1985
1984
</varlistentry>
1986
1985
1987
1986
<varlistentry>
1988
- <term><literal>VACUUM </literal></term>
1987
+ <term><literal>MAINTAIN </literal></term>
1989
1988
<listitem>
1990
1989
<para>
1991
- Allows <command>VACUUM</command> on a relation.
1992
- </para>
1993
- </listitem>
1994
- </varlistentry>
1995
-
1996
- <varlistentry>
1997
- <term><literal>ANALYZE</literal></term>
1998
- <listitem>
1999
- <para>
2000
- Allows <command>ANALYZE</command> on a relation.
1990
+ Allows <command>VACUUM</command>, <command>ANALYZE</command>,
1991
+ <command>CLUSTER</command>, <command>REFRESH MATERIALIZED VIEW</command>,
1992
+ <command>REINDEX</command>, and <command>LOCK TABLE</command> on a
1993
+ relation.
2001
1994
</para>
2002
1995
</listitem>
2003
1996
</varlistentry>
@@ -2151,13 +2144,8 @@ REVOKE ALL ON accounts FROM PUBLIC;
2151
2144
<entry><literal>PARAMETER</literal></entry>
2152
2145
</row>
2153
2146
<row>
2154
- <entry><literal>VACUUM</literal></entry>
2155
- <entry><literal>v</literal></entry>
2156
- <entry><literal>TABLE</literal></entry>
2157
- </row>
2158
- <row>
2159
- <entry><literal>ANALYZE</literal></entry>
2160
- <entry><literal>z</literal></entry>
2147
+ <entry><literal>MAINTAIN</literal></entry>
2148
+ <entry><literal>m</literal></entry>
2161
2149
<entry><literal>TABLE</literal></entry>
2162
2150
</row>
2163
2151
</tbody>
@@ -2250,7 +2238,7 @@ REVOKE ALL ON accounts FROM PUBLIC;
2250
2238
</row>
2251
2239
<row>
2252
2240
<entry><literal>TABLE</literal> (and table-like objects)</entry>
2253
- <entry><literal>arwdDxtvz </literal></entry>
2241
+ <entry><literal>arwdDxtm </literal></entry>
2254
2242
<entry>none</entry>
2255
2243
<entry><literal>\dp</literal></entry>
2256
2244
</row>
@@ -2308,12 +2296,12 @@ GRANT SELECT (col1), UPDATE (col1) ON mytable TO miriam_rw;
2308
2296
would show:
2309
2297
<programlisting>
2310
2298
=> \dp mytable
2311
- Access privileges
2312
- Schema | Name | Type | Access privileges | Column privileges | Policies
2313
- --------+---------+-------+------------------------- +-----------------------+----------
2314
- public | mytable | table | miriam=arwdDxtvz /miriam+| col1: +|
2315
- | | | =r/miriam +| miriam_rw=rw/miriam |
2316
- | | | admin=arw/miriam | |
2299
+ Access privileges
2300
+ Schema | Name | Type | Access privileges | Column privileges | Policies
2301
+ --------+---------+-------+------------------------+-----------------------+----------
2302
+ public | mytable | table | miriam=arwdDxtm /miriam+| col1: +|
2303
+ | | | =r/miriam +| miriam_rw=rw/miriam |
2304
+ | | | admin=arw/miriam | |
2317
2305
(1 row)
2318
2306
</programlisting>
2319
2307
</para>
0 commit comments