Adjust /contrib for new include file contents.
authorBruce Momjian <bruce@momjian.us>
Thu, 13 Jul 2006 16:57:31 +0000 (16:57 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 13 Jul 2006 16:57:31 +0000 (16:57 +0000)
contrib/btree_gist/btree_interval.c
contrib/btree_gist/btree_numeric.c
contrib/btree_gist/btree_time.c
contrib/btree_gist/btree_utils_num.h
contrib/btree_gist/btree_utils_var.c
contrib/pgrowlocks/pgrowlocks.c
contrib/tsearch2/ginidx.c

index 6f346f94fed36577e6772d067e804e6c75dc5694..09c6be5487a7543e2480a24df8da5210ce72ce4e 100644 (file)
@@ -1,5 +1,6 @@
 #include "btree_gist.h"
 #include "btree_utils_num.h"
+#include "utils/timestamp.h"
 
 typedef struct
 {
index b9da2dda2f4eb89d6591737f602a651a95dc8c1d..5943483a65a5f9450e51af4e3c9485af8ad97cce 100644 (file)
@@ -1,3 +1,5 @@
+#include <math.h>
+
 #include "btree_gist.h"
 #include "btree_utils_var.h"
 #include "utils/builtins.h"
index 379f1e0a603c9d5e2d475a751af10ed5dad6ce88..fd5e63e2bbc7cd5aa6283cec3ffe5129bf583c30 100644 (file)
@@ -1,6 +1,7 @@
 #include "btree_gist.h"
 #include "btree_utils_num.h"
 #include "utils/date.h"
+#include "utils/timestamp.h"
 
 typedef struct
 {
index b2eb5dc869a910513850337fa6c95518f884b686..555410c08f6883e3cc4ece6d46dc9007c46793b9 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef __BTREE_UTILS_NUM_H__
 #define __BTREE_UTILS_NUM_H__
 
+#include <math.h>
+
 #include "btree_gist.h"
 
 typedef char GBT_NUMKEY;
index 62d7994be647bf584fda5867e654f31ec7520518..17aaa9d975a9b986e9573ad660076f8fce177625 100644 (file)
@@ -1,3 +1,5 @@
+#include <math.h>
+
 #include "btree_gist.h"
 #include "btree_utils_var.h"
 #include "utils/pg_locale.h"
index d504601ae0c87603d48583d773ffd9fa901e5fe3..13d3f2164fcdd36f9f6cf38d4d190000e81d6788 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.c,v 1.3 2006/05/30 22:12:13 tgl Exp $
+ * $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.c,v 1.4 2006/07/13 16:57:31 momjian Exp $
  *
  * Copyright (c) 2005-2006 Tatsuo Ishii
  *
@@ -27,6 +27,7 @@
 #include "funcapi.h"
 #include "access/heapam.h"
 #include "access/transam.h"
+#include "access/xact.h"
 #include "catalog/namespace.h"
 #include "catalog/pg_type.h"
 #include "storage/proc.h"
index 0a4e04e64a915764b6b4d996fbdfdeca7fc061c8..4ba3fc62a04f2a9ad132454f0d0f3c6f2c5a98ad 100644 (file)
@@ -4,6 +4,7 @@
 
 #include "access/gist.h"
 #include "access/itup.h"
+#include "access/skey.h"
 #include "access/tuptoaster.h"
 #include "storage/bufpage.h"
 #include "utils/array.h"