aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-01-17 01:29:07 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-01-17 01:29:07 +0000
commitceca03600e4dce4848d712355a720ddad2a5e476 (patch)
tree3650acaecf42a973fe3b008e49a8e2f8a267d521 /src
parent1500e262b55b581f5f11ce842ef98945c35d8656 (diff)
downloadpostgresql-ceca03600e4dce4848d712355a720ddad2a5e476.tar.gz
postgresql-ceca03600e4dce4848d712355a720ddad2a5e476.zip
Hmm, numeric array type was missing too. Added.
Of the standard types, only 'timestamp' seems not to have an array type; should it be added, or are we going to remove that type for 7.0 anyway?
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_type.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/catalog/pg_type.h b/src/include/catalog/pg_type.h
index c297eb860de..a41e577e03f 100644
--- a/src/include/catalog/pg_type.h
+++ b/src/include/catalog/pg_type.h
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_type.h,v 1.76 2000/01/15 18:30:34 petere Exp $
+ * $Id: pg_type.h,v 1.77 2000/01/17 01:29:07 tgl Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -379,6 +379,7 @@ DESCR("@ <number> <units>, time interval");
DATA(insert OID = 1187 ( _timespan PGUID -1 -1 f b t \054 0 1186 array_in array_out array_in array_out d _null_ ));
/* OIDS 1200 - 1299 */
+DATA(insert OID = 1231 ( _numeric PGUID -1 -1 f b t \054 0 1700 array_in array_out array_in array_out i _null_ ));
DATA(insert OID = 1296 ( timestamp PGUID 4 19 t b t \054 0 0 timestamp_in timestamp_out timestamp_in timestamp_out i _null_ ));
DESCR("date time timezone, limited-range ISO-formated date and time");
#define TIMESTAMPOID 1296