8000 Adjust /contrib for new include file contents. · postgrespro/postgres_cluster@66c15df · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 66c15df

Browse files
committed
Adjust /contrib for new include file contents.
1 parent a22d76d commit 66c15df

File tree

7 files changed

+11
-1
lines changed

7 files changed

+11
-1
lines changed

contrib/btree_gist/btree_interval.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "btree_gist.h"
22
#include "btree_utils_num.h"
3+
#include "utils/timestamp.h"
34

45
typedef struct
56
{

contrib/btree_gist/btree_numeric.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#include <math.h>
2+
13
#include "btree_gist.h"
24
#include "btree_utils_var.h"
35
#include "utils/builtins.h"

contrib/btree_gist/btree_time.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include "btree_gist.h"
22
#include "btree_utils_num.h"
33
#include "utils/date.h"
4+
#include "utils/timestamp.h"
45

56
typedef struct
67
{

contrib/btree_gist/btree_utils_num.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef __BTREE_UTILS_NUM_H__
22
#define __BTREE_UTILS_NUM_H__
33

4+
#include <math.h>
5+
46
#include "btree_gist.h"
57

68
typedef char GBT_NUMKEY;

contrib/btree_gist/btree_utils_var.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#include <math.h>
2+
13
#include "btree_gist.h"
24
#include "btree_utils_var.h"
35
#include "utils/pg_locale.h"

contrib/pgrowlocks/pgrowlocks.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.c,v 1.3 2006/05/30 22:12:13 tgl Exp $
2+
* $PostgreSQL: pgsql/contrib/pgrowlocks/pgrowlocks.c,v 1.4 2006/07/13 16:57:31 momjian Exp $
33
*
44
* Copyright (c) 2005-2006 Tatsuo Ishii
55
*
@@ -27,6 +27,7 @@
2727
#include "funcapi.h"
2828
#include "access/heapam.h"
2929
#include "access/transam.h"
30+
#include "access/xact.h"
3031
#include "catalog/namespace.h"
3132
#include "catalog/pg_type.h"
3233
#include "storage/proc.h"

contrib/tsearch2/ginidx.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
#include "access/gist.h"
66
#include "access/itup.h"
7+
#include "access/skey.h"
78
#include "access/tuptoaster.h"
89
#include "storage/bufpage.h"
910
#include "utils/array.h"

0 commit comments

Comments
 (0)
0