@@ -1692,8 +1692,7 @@ ALTER TABLE products RENAME TO items;
16921692 <literal>TRUNCATE</literal>, <literal>REFERENCES</literal>, <literal>TRIGGER</literal>,
16931693 <literal>CREATE</literal>, <literal>CONNECT</literal>, <literal>TEMPORARY</literal>,
16941694 <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>.
16971696 The privileges applicable to a particular
16981697 object vary depending on the object's type (table, function, etc.).
16991698 More detail about the meanings of these privileges appears below.
@@ -1985,19 +1984,13 @@ REVOKE ALL ON accounts FROM PUBLIC;
19851984 </varlistentry>
19861985
19871986 <varlistentry>
1988- <term><literal>VACUUM </literal></term>
1987+ <term><literal>MAINTAIN </literal></term>
19891988 <listitem>
19901989 <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.
20011994 </para>
20021995 </listitem>
20031996 </varlistentry>
@@ -2151,13 +2144,8 @@ REVOKE ALL ON accounts FROM PUBLIC;
21512144 <entry><literal>PARAMETER</literal></entry>
21522145 </row>
21532146 <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>
21612149 <entry><literal>TABLE</literal></entry>
21622150 </row>
21632151 </tbody>
@@ -2250,7 +2238,7 @@ REVOKE ALL ON accounts FROM PUBLIC;
22502238 </row>
22512239 <row>
22522240 <entry><literal>TABLE</literal> (and table-like objects)</entry>
2253- <entry><literal>arwdDxtvz </literal></entry>
2241+ <entry><literal>arwdDxtm </literal></entry>
22542242 <entry>none</entry>
22552243 <entry><literal>\dp</literal></entry>
22562244 </row>
@@ -2308,12 +2296,12 @@ GRANT SELECT (col1), UPDATE (col1) ON mytable TO miriam_rw;
23082296 would show:
23092297<programlisting>
23102298=> \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 | |
23172305(1 row)
23182306</programlisting>
23192307 </para>
0 commit comments