? log ? src/backend/parser/y.output Index: doc/src/sgml/catalogs.sgml =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v retrieving revision 2.33 diff -c -r2.33 catalogs.sgml *** doc/src/sgml/catalogs.sgml 2002/03/07 16:35:32 2.33 --- doc/src/sgml/catalogs.sgml 2002/03/12 02:35:22 *************** *** 2511,2516 **** --- 2511,2563 ---- + typbasetype + oid + + + typbasetype is the type that this one is based + on. Normally references the domains parent type, and is 0 otherwise. + + + + + typnotnull + boolean + + + typnotnull represents a NOT NULL + constraint on a type. Used for domains only. + + + + + 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.23 diff -c -r1.23 reference.sgml *** doc/src/sgml/reference.sgml 2002/03/07 16:35:32 1.23 --- doc/src/sgml/reference.sgml 2002/03/12 02:35:48 *************** *** 61,66 **** --- 61,67 ---- &createAggregate; &createConstraint; &createDatabase; + &createDomain; &createFunction; &createGroup; &createIndex; *************** *** 78,83 **** --- 79,85 ---- &delete; &dropAggregate; &dropDatabase; + &dropDomain; &dropFunction; &dropGroup; &dropIndex; *************** *** 115,121 **** &unlisten; &update; &vacuum; !