? doc/src/sgml/ref/create_domain.sgml ? doc/src/sgml/ref/drop_domain.sgml Index: doc/src/sgml/catalogs.sgml =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v retrieving revision 2.30 diff -c -r2.30 catalogs.sgml *** doc/src/sgml/catalogs.sgml 2002/02/18 23:10:59 2.30 --- doc/src/sgml/catalogs.sgml 2002/02/26 02:56:15 *************** *** 2497,2502 **** --- 2497,2549 ---- + typbasetype + oid + + + typbasetype is the type that this one is based + off of. Normally references the domains parent type, and is 0 otherwise. + + + + + typnotnull + boolean + + + typnotnull represents a NOT NULL + constraint on a type. Normally used only for domains. + + + + + typmod + integer + + + typmod records type-specific data + supplied at table creation time (for example, the maximum + length of a varchar column). It is passed to + type-specific input and output functions as the third + argument. The value will generally be -1 for types that do not + need typmod. This data is copied to + pg_attribute.atttypmod on creation + of a table using a domain as it's field type. + + + + + typdefaultbin + text + + + typdefaultbin is NULL for types without a + default value. If it's not NULL, it contains the internal string + representation of the default expression node. + + + + typdefault text Index: doc/src/sgml/reference.sgml =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/reference.sgml,v retrieving revision 1.20 diff -c -r1.20 reference.sgml *** doc/src/sgml/reference.sgml 2002/01/15 05:05:49 1.20 --- doc/src/sgml/reference.sgml 2002/02/26 02:56:15 *************** *** 60,65 **** --- 60,66 ---- &createAggregate; &createConstraint; &createDatabase; + &createDomain; &createFunction; &createGroup; &createIndex; *************** *** 77,82 **** --- 78,84 ---- &delete; &dropAggregate; &dropDatabase; + &dropDomain; &dropFunction; &dropGroup; &dropIndex; *************** *** 114,120 **** &unlisten; &update; &vacuum; !