diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index a60014267ea44febe6584b47aaee973c2a497934..6df69db4aadee337b44eb92096d72e909390dde3 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -2159,7 +2159,7 @@ SELECT c.column_name, c.data_type, e.data_type AS element_type FROM information_schema.columns c LEFT JOIN information_schema.element_types e ON ((c.table_catalog, c.table_schema, c.table_name, 'TABLE', c.dtd_identifier) - = (e.object_catalog, e.object_schema, e.object_name, e.object_type, e.dtd_identifier)) + = (e.object_catalog, e.object_schema, e.object_name, e.object_type, e.collection_type_identifier)) WHERE c.table_schema = '...' AND c.table_name = '...' ORDER BY c.ordinal_position; </programlisting> @@ -2219,11 +2219,13 @@ ORDER BY c.ordinal_position; </row> <row> - <entry><literal>dtd_identifier</literal></entry> + <entry><literal>collection_type_identifier</literal></entry> <entry><type>sql_identifier</type></entry> <entry> The identifier of the data type descriptor of the array being - described + described. Use this to join with the + <literal>dtd_identifier</literal> columns of other information + schema views. </entry> </row> @@ -2378,6 +2380,14 @@ ORDER BY c.ordinal_position; <entry>Always null, because arrays always have unlimited maximum cardinality in <productname>PostgreSQL</></entry> </row> + <row> + <entry><literal>dtd_identifier</literal></entry> + <entry><type>sql_identifier</type></entry> + <entry> + An identifier of the data type descriptor of the element. This + is currently not useful. + </entry> + </row> </tbody> </tgroup> </table>