From: Peter Eisentraut Date: Sun, 2 Nov 2003 12:53:57 +0000 (+0000) Subject: Call domains "domains", not "derived types". X-Git-Tag: REL7_4_RC1~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33ab0d9eee3a8d0b0e5c44af08408ab17fcea6ca;p=postgresql Call domains "domains", not "derived types". --- diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index a93b0587cf..bd208906df 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,6 +1,6 @@ @@ -3327,7 +3327,7 @@ A composite type is automatically created for each table in the database, to represent the row structure of the table. It is also possible to create composite types with CREATE TYPE AS and - derived types with CREATE DOMAIN. + domains with CREATE DOMAIN. @@ -3403,11 +3403,11 @@ typtype is b for - a base type, c for a composite type (i.e., - a table's row type), d for a derived type (i.e., - a domain), or p for a pseudo-type. See also - typrelid - and typbasetype. + a base type, c for a composite type (i.e., a + table's row type), d for a domain, or + p for a pseudo-type. See also + typrelid and + typbasetype. @@ -3588,9 +3588,9 @@ oidpg_type.oid - If this is a derived type (see typtype), + If this is a domain (see typtype), then typbasetype identifies - the type that this one is based on. Zero if not a derived type. + the type that this one is based on. Zero if not a domain.