]> granicus.if.org Git - postgresql/commitdiff
Fixes:
authorMarc G. Fournier <scrappy@hub.org>
Fri, 19 Jul 1996 05:21:28 +0000 (05:21 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Fri, 19 Jul 1996 05:21:28 +0000 (05:21 +0000)
It is not possible to define attributes as arrays of date or time, the
type _time and _date are not defined.

Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>

src/backend/catalog/pg_type.h

index 5e9ac3cd2f42ca65328285900e6e9cccbb2b5f05..029c25a781f39418776ed6f76891f8a3e0547d8c 100644 (file)
@@ -7,7 +7,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_type.h,v 1.2 1996/07/19 05:12:40 scrappy Exp $
+ * $Id: pg_type.h,v 1.3 1996/07/19 05:21:28 scrappy Exp $
  *
  * NOTES
  *    the genbki.sh script reads this file and generates .bki
@@ -240,6 +240,8 @@ DATA(insert OID = 1043 ( varchar PGUID -1  -1 f b t \054 0  18 varcharin varchar
 
 DATA(insert OID = 1082 ( date      PGUID  4  10 t b t \054 0  0 date_in date_out date_in date_out i _null_ ));
 DATA(insert OID = 1083 ( time      PGUID  8  16 f b t \054 0  0 time_in time_out time_in time_out i _null_ ));
+DATA(insert OID = 1182 ( _date     PGUID  -1 -1 f b t \054 0  1082 array_in array_out array_in array_out i _null_ ));
+DATA(insert OID = 1183 ( _time     PGUID  -1 -1 f b t \054 0  1083 array_in array_out array_in array_out d _null_ ));
 /*
  * prototypes for functions in pg_type.c 
  */