Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8e1ccad5
Commit
8e1ccad5
authored
Feb 20, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update information_schema documentation to match system tables.
Backpatch to 8.2.X.
parent
ddd8817f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
13 deletions
+4
-13
doc/src/sgml/information_schema.sgml
doc/src/sgml/information_schema.sgml
+4
-13
No files found.
doc/src/sgml/information_schema.sgml
View file @
8e1ccad5
<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.3
1 2007/02/01 00:28:17
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/information_schema.sgml,v 1.3
2 2007/02/20 18:47:25
momjian Exp $ -->
<chapter id="information-schema">
<title>The Information Schema</title>
...
...
@@ -1876,7 +1876,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.
array_type
_identifier))
= (e.object_catalog, e.object_schema, e.object_name, e.object_type, e.
dtd
_identifier))
WHERE c.table_schema = '...' AND c.table_name = '...'
ORDER BY c.ordinal_position;
</programlisting>
...
...
@@ -1936,13 +1936,11 @@ ORDER BY c.ordinal_position;
</row>
<row>
<entry><literal>
array_type
_identifier</literal></entry>
<entry><literal>
dtd
_identifier</literal></entry>
<entry><type>sql_identifier</type></entry>
<entry>
The identifier of the data type descriptor of the array being
described. Use this to join with the
<literal>dtd_identifier</literal> columns of other information
schema views.
described
</entry>
</row>
...
...
@@ -2097,13 +2095,6 @@ 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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment