summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1996-07-19 05:21:28 +0000
committerMarc G. Fournier1996-07-19 05:21:28 +0000
commit54857ad1a7772753418f532881f2438586b66aa5 (patch)
tree744d87fff22ae4b978ff6a41ca36a9b001f13b5f
parent1d4a115a37867ad58661aebb58cc4386c3871992 (diff)
Fixes:
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>
-rw-r--r--src/backend/catalog/pg_type.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/catalog/pg_type.h b/src/backend/catalog/pg_type.h
index 5e9ac3cd2f4..029c25a781f 100644
--- a/src/backend/catalog/pg_type.h
+++ b/src/backend/catalog/pg_type.h
@@ -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
*/