Commit e92bec28 authored by Tom Lane's avatar Tom Lane

Update some obsolete comments and column descriptions.

parent 12bb3679
This diff is collapsed.
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: pg_type.h,v 1.133 2002/09/04 20:31:42 momjian Exp $ * $Id: pg_type.h,v 1.134 2002/09/24 21:26:44 tgl Exp $
* *
* NOTES * NOTES
* the genbki.sh script reads this file and generates .bki * the genbki.sh script reads this file and generates .bki
...@@ -153,18 +153,16 @@ CATALOG(pg_type) BOOTSTRAP ...@@ -153,18 +153,16 @@ CATALOG(pg_type) BOOTSTRAP
Oid typbasetype; Oid typbasetype;
/* /*
* typtypmod records type-specific data supplied at domain creation * Domains use typtypmod to record the typmod to be applied to their
* time (for example, the max length of a varchar field). It is * base type (-1 if base type does not use a typmod). -1 if this type
* passed to type-specific input and output functions as the third * is not a domain.
* argument. The value will generally be -1 for types that do not need
* typmod. This value is copied to pg_attribute.atttypmod when
* creating a column of a domain type.
*/ */
int4 typtypmod; int4 typtypmod;
/* /*
* typndims is the declared number of dimensions for a domain type * typndims is the declared number of dimensions for an array domain type
* that is an array (with element type typbasetype). Otherwise zero. * (i.e., typbasetype is an array type; the domain's typelem will match
* the base type's typelem). Otherwise zero.
*/ */
int4 typndims; int4 typndims;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment