aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-02-24 22:59:22 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-02-24 22:59:22 +0000
commitaed597102ca15ee8215574b923b0ad0190af3920 (patch)
treea46a21d1753fb80caf6f4775cbdd6ed6a2b24c0e /src
parentbc0476f9c872f1590d80f96d3becf89e5ac0e134 (diff)
downloadpostgresql-aed597102ca15ee8215574b923b0ad0190af3920.tar.gz
postgresql-aed597102ca15ee8215574b923b0ad0190af3920.zip
anyarray really needs to be declared with typalign = 'd', so that entries
in pg_statistic are correctly aligned if they contain values that require double alignment. Too bad we cannot force initdb for this in 7.4 branch.
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_type.h b/src/include/catalog/pg_type.h
index 06421ae62d6..7b64d10a494 100644
--- a/src/include/catalog/pg_type.h
+++ b/src/include/catalog/pg_type.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_type.h,v 1.147 2003/08/04 02:40:12 momjian Exp $
+ * $Id: pg_type.h,v 1.147.4.1 2004/02/24 22:59:22 tgl Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -525,7 +525,7 @@ DATA(insert OID = 2275 ( cstring PGNSP PGUID -2 f p t \054 0 0 cstring_in cstri
#define CSTRINGOID 2275
DATA(insert OID = 2276 ( any PGNSP PGUID 4 t p t \054 0 0 any_in any_out - - i p f 0 -1 0 _null_ _null_ ));
#define ANYOID 2276
-DATA(insert OID = 2277 ( anyarray PGNSP PGUID -1 f p t \054 0 0 anyarray_in anyarray_out anyarray_recv anyarray_send i x f 0 -1 0 _null_ _null_ ));
+DATA(insert OID = 2277 ( anyarray PGNSP PGUID -1 f p t \054 0 0 anyarray_in anyarray_out anyarray_recv anyarray_send d x f 0 -1 0 _null_ _null_ ));
#define ANYARRAYOID 2277
DATA(insert OID = 2278 ( void PGNSP PGUID 4 t p t \054 0 0 void_in void_out - - i p f 0 -1 0 _null_ _null_ ));
#define VOIDOID 2278