diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2015-05-09 13:36:52 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2015-05-09 13:36:52 -0400 |
commit | cb9fa802b32b222b43e28866c20ebb7125779ec3 (patch) | |
tree | 4d89fc13693bb81dc7e199045f0c73f6cede7478 /doc/src | |
parent | 0c90f6769de6a60f842c916d49b404d03bcc503a (diff) | |
download | postgresql-cb9fa802b32b222b43e28866c20ebb7125779ec3.tar.gz postgresql-cb9fa802b32b222b43e28866c20ebb7125779ec3.zip |
Add new OID alias type regnamespace
Catalog version bumped
Kyotaro HORIGUCHI
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/datatype.sgml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 0cac9935d2d..9d5ce953f17 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -4321,9 +4321,9 @@ SET xmloption TO { DOCUMENT | CONTENT }; an object identifier. There are also several alias types for <type>oid</>: <type>regproc</>, <type>regprocedure</>, <type>regoper</>, <type>regoperator</>, <type>regclass</>, - <type>regtype</>, <type>regrole</>, <type>regconfig</>, and - <type>regdictionary</>. <xref linkend="datatype-oid-table"> shows - an overview. + <type>regtype</>, <type>regrole</>, <type>regnamespace</>, + <type>regconfig</>, and <type>regdictionary</>. + <xref linkend="datatype-oid-table"> shows an overview. </para> <para> @@ -4439,6 +4439,13 @@ SELECT * FROM pg_attribute </row> <row> + <entry><type>regnamespace</></entry> + <entry><structname>pg_namespace</></entry> + <entry>namespace name</entry> + <entry><literal>pg_catalog</></entry> + </row> + + <row> <entry><type>regconfig</></entry> <entry><structname>pg_ts_config</></entry> <entry>text search configuration</entry> |