From 33ab0d9eee3a8d0b0e5c44af08408ab17fcea6ca Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 2 Nov 2003 12:53:57 +0000 Subject: [PATCH] Call domains "domains", not "derived types". --- doc/src/sgml/catalogs.sgml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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.