diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml
index 124bbc3ac2..56651ce6cd 100644
--- a/doc/src/sgml/information_schema.sgml
+++ b/doc/src/sgml/information_schema.sgml
@@ -1884,7 +1884,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;
@@ -1944,11 +1944,13 @@ ORDER BY c.ordinal_position;
- dtd_identifier
+ collection_type_identifier
sql_identifier
The identifier of the data type descriptor of the array being
- described
+ described. Use this to join with the
+ dtd_identifier columns of other information
+ schema views.
@@ -2103,6 +2105,14 @@ ORDER BY c.ordinal_position;
Always null, because arrays always have unlimited maximum cardinality in PostgreSQL>
+
+ dtd_identifier
+ sql_identifier
+
+ An identifier of the data type descriptor of the element. This
+ is currently not useful.
+
+