diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-06-28 16:07:23 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-06-28 16:08:52 +0300 |
commit | 5594d14696f916e4aad14a3a12a4c15d2e7123bc (patch) | |
tree | d5f8e36649af15bcb26c632de424391976743d02 /doc/src | |
parent | c533c1477f6beede766034c1226a20ac08320b05 (diff) | |
download | postgresql-5594d14696f916e4aad14a3a12a4c15d2e7123bc.tar.gz postgresql-5594d14696f916e4aad14a3a12a4c15d2e7123bc.zip |
Add composite-type attributes to information_schema.element_types view
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index ab9ce2aa4a8..396d3e76365 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -2147,7 +2147,7 @@ <para> The view <literal>element_types</literal> contains the data type - descriptors of the elements of arrays. When a table column, + descriptors of the elements of arrays. When a table column, composite-type attribute, domain, function parameter, or function return value is defined to be of an array type, the respective information schema view only contains <literal>ARRAY</literal> in the column @@ -2212,9 +2212,11 @@ ORDER BY c.ordinal_position; <entry> The type of the object that uses the array being described: one of <literal>TABLE</literal> (the array is used by a column of - that table), <literal>DOMAIN</literal> (the array is used by - that domain), <literal>ROUTINE</literal> (the array is used by - a parameter or the return data type of that function). + that table), <literal>USER-DEFINED TYPE</literal> (the array is + used by an attribute of that composite type), + <literal>DOMAIN</literal> (the array is used by that domain), + <literal>ROUTINE</literal> (the array is used by a parameter or + the return data type of that function). </entry> </row> |