aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-07-14 19:05:52 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-07-14 19:05:52 +0000
commit98bac16e4d2fc30fac284e2cf3edf19f81ae61e8 (patch)
tree23409001f976c822c910a1e53bdf577112cda213 /src
parente2f7eb36d6eef0deba1c3a5454dbc6f2bdc1edcb (diff)
downloadpostgresql-98bac16e4d2fc30fac284e2cf3edf19f81ae61e8.tar.gz
postgresql-98bac16e4d2fc30fac284e2cf3edf19f81ae61e8.zip
Fix misguided removal of access/tuptoaster.h inclusion, per Kris Jurka.
I'm going to insist on reversion of this entire patch unless pgrminclude is upgraded to a less broken state, but in the meantime let's get contrib passing regression again.
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/common/indextuple.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/access/common/indextuple.c b/src/backend/access/common/indextuple.c
index 6b43da8e16f..969a0c20142 100644
--- a/src/backend/access/common/indextuple.c
+++ b/src/backend/access/common/indextuple.c
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.78 2006/07/14 14:52:16 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.79 2006/07/14 19:05:52 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,6 +18,7 @@
#include "access/heapam.h"
#include "access/itup.h"
+#include "access/tuptoaster.h"
/* ----------------------------------------------------------------