diff options
author | Fujii Masao <fujii@postgresql.org> | 2016-07-28 22:34:42 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2016-07-28 22:35:15 +0900 |
commit | 6b8a89e646be8a25771e292e09550aa1abe7019d (patch) | |
tree | f3a01bf9b572b66d2332a395150d54850c39baee /doc/src | |
parent | d2ef7758d2d2175509b2f49f7049e06ccd81fd57 (diff) | |
download | postgresql-6b8a89e646be8a25771e292e09550aa1abe7019d.tar.gz postgresql-6b8a89e646be8a25771e292e09550aa1abe7019d.zip |
Fix incorrect description of udt_privileges view in documentation.
The description of udt_privileges view contained an incorrect copy-pasted word.
Back-patch to 9.2 where udt_privileges view was added.
Author: Alexander Law
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index ca1f20b3385..85db4d3c544 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -5881,7 +5881,7 @@ ORDER BY c.ordinal_position; The view <literal>udt_privileges</literal> identifies <literal>USAGE</literal> privileges granted on user-defined types to a currently enabled role or by a currently enabled role. There is one row for - each combination of column, grantor, and grantee. This view shows only + each combination of type, grantor, and grantee. This view shows only composite types (see under <xref linkend="infoschema-user-defined-types"> for why); see <xref linkend="infoschema-usage-privileges"> for domain privileges. |