mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Fix documentation of information_schema.element_types
The documentation of the columns collection_type_identifier and dtd_identifier was wrong. This effectively reverts commits8e1ccad519
and57352df66d
and updates the name array_type_identifier (the name in SQL:1999) to collection_type_identifier. closes bug #5926
This commit is contained in:
parent
cb252c2acd
commit
ffa653b945
@ -1884,7 +1884,7 @@
|
|||||||
SELECT c.column_name, c.data_type, e.data_type AS element_type
|
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
|
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)
|
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 = '...'
|
WHERE c.table_schema = '...' AND c.table_name = '...'
|
||||||
ORDER BY c.ordinal_position;
|
ORDER BY c.ordinal_position;
|
||||||
</programlisting>
|
</programlisting>
|
||||||
@ -1944,11 +1944,13 @@ ORDER BY c.ordinal_position;
|
|||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry><literal>dtd_identifier</literal></entry>
|
<entry><literal>collection_type_identifier</literal></entry>
|
||||||
<entry><type>sql_identifier</type></entry>
|
<entry><type>sql_identifier</type></entry>
|
||||||
<entry>
|
<entry>
|
||||||
The identifier of the data type descriptor of the array being
|
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>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
@ -2103,6 +2105,14 @@ ORDER BY c.ordinal_position;
|
|||||||
<entry>Always null, because arrays always have unlimited maximum cardinality in <productname>PostgreSQL</></entry>
|
<entry>Always null, because arrays always have unlimited maximum cardinality in <productname>PostgreSQL</></entry>
|
||||||
</row>
|
</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>
|
</tbody>
|
||||||
</tgroup>
|
</tgroup>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
Reference in New Issue
Block a user