Call domains "domains", not "derived types".
authorPeter Eisentraut
Sun, 2 Nov 2003 12:53:57 +0000 (12:53 +0000)
committerPeter Eisentraut
Sun, 2 Nov 2003 12:53:57 +0000 (12:53 +0000)
doc/src/sgml/catalogs.sgml

index a93b0587cf2fec634bb2357299dcad37501c4e19..bd208906dfe50f965eb1a3fa6a58339d176411c2 100644 (file)
@@ -1,6 +1,6 @@
 
 
 
    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.
   
 
   
       
       
        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.
       
      
 
       oid
       pg_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.