diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-03 04:11:08 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-03 04:11:08 +0000 |
commit | 8338cc03a8915e28024981d09193612ec4a83819 (patch) | |
tree | 8845f3a7695af8370cb60c2461d39e70be667584 /src/backend | |
parent | 53cedcac22bca29bb6ac766b04d5dd08db77ac03 (diff) | |
download | postgresql-8338cc03a8915e28024981d09193612ec4a83819.tar.gz postgresql-8338cc03a8915e28024981d09193612ec4a83819.zip |
Remove the last traces of datatypes datetime and timespan.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/catalog/heap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index c6e097ede58..e0301094d16 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.197 2002/04/27 21:24:33 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.198 2002/05/03 04:11:08 tgl Exp $ * * * INTERFACE ROUTINES @@ -1777,7 +1777,7 @@ cookDefault(ParseState *pstate, * column's type. We store the expression without coercion, * however, to avoid premature coercion in cases like * - * CREATE TABLE tbl (fld datetime DEFAULT 'now'::text); + * CREATE TABLE tbl (fld timestamp DEFAULT 'now'::text); * * NB: this should match the code in optimizer/prep/preptlist.c that * will actually do the coercion, to ensure we don't accept an |