diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-03-02 23:10:41 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-03-02 23:17:56 +0200 |
commit | 091bda0188250c9802cebca066b4ca9e049616e6 (patch) | |
tree | 524811457cbfc814ec973884dc2e4bf009399b27 /doc/src | |
parent | 43bdf3583a9a5912e1800ab140b8ca495ae69d85 (diff) | |
download | postgresql-091bda0188250c9802cebca066b4ca9e049616e6.tar.gz postgresql-091bda0188250c9802cebca066b4ca9e049616e6.zip |
Add collations to information_schema.usage_privileges
This is faked information like for domains.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index aa6f852a8a3..eba3a0a25da 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -3560,7 +3560,7 @@ ORDER BY c.ordinal_position; <row> <entry><literal>object_type</literal></entry> <entry><type>character_data</type></entry> - <entry><literal>DOMAIN</literal> or <literal>FOREIGN DATA WRAPPER</literal> or <literal>FOREIGN SERVER</literal></entry> + <entry><literal>COLLATION</literal> or <literal>DOMAIN</literal> or <literal>FOREIGN DATA WRAPPER</literal> or <literal>FOREIGN SERVER</literal></entry> </row> <row> @@ -5497,15 +5497,15 @@ ORDER BY c.ordinal_position; <literal>USAGE</literal> privileges granted on various kinds of objects to a currently enabled role or by a currently enabled role. In <productname>PostgreSQL</productname>, this currently applies to - domains, foreign-data wrappers, and foreign servers. There is one + collations, domains, foreign-data wrappers, and foreign servers. There is one row for each combination of object, grantor, and grantee. </para> <para> - Since domains do not have real privileges + Since collations and domains do not have real privileges in <productname>PostgreSQL</productname>, this view shows implicit non-grantable <literal>USAGE</literal> privileges granted by the - owner to <literal>PUBLIC</literal> for all domains. The other + owner to <literal>PUBLIC</literal> for all collations and domains. The other object types, however, show real privileges. </para> @@ -5556,7 +5556,7 @@ ORDER BY c.ordinal_position; <row> <entry><literal>object_type</literal></entry> <entry><type>character_data</type></entry> - <entry><literal>DOMAIN</literal> or <literal>FOREIGN DATA WRAPPER</literal> or <literal>FOREIGN SERVER</literal></entry> + <entry><literal>COLLATION</literal> or <literal>DOMAIN</literal> or <literal>FOREIGN DATA WRAPPER</literal> or <literal>FOREIGN SERVER</literal></entry> </row> <row> |