File tree Expand file tree Collapse file tree 8 files changed +11
-2
lines changed Expand file tree Collapse file tree 8 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
/* contrib/cube/cubedata.h */
2
2
3
+ #include "fmgr.h"
4
+
3
5
#define CUBE_MAX_DIM (100)
4
6
5
7
typedef struct NDBOX
Original file line number Diff line number Diff line change 15
15
16
16
#include " postgres.h"
17
17
18
+ #include " access/xlogdefs.h"
18
19
#include " nodes/makefuncs.h"
19
20
#include " nodes/replnodes.h"
20
21
#include " replication/walsender.h"
Original file line number Diff line number Diff line change 14
14
#include "access/gin.h"
15
15
#include "access/itup.h"
16
16
#include "fmgr.h"
17
+ #include "storage/bufmgr.h"
17
18
#include "utils/rbtree.h"
18
19
19
20
Original file line number Diff line number Diff line change 22
22
#include "access/sdir.h"
23
23
#include "access/xlog.h"
24
24
#include "fmgr.h"
25
+ #include "storage/bufmgr.h"
25
26
#include "storage/lock.h"
26
27
#include "utils/relcache.h"
27
28
Original file line number Diff line number Diff line change 16
16
17
17
#include "access/tupdesc.h"
18
18
#include "access/tupmacs.h"
19
+ #include "storage/bufpage.h"
19
20
#include "storage/itemptr.h"
20
21
#include "storage/relfilenode.h"
21
22
Original file line number Diff line number Diff line change 19
19
#include "access/sdir.h"
20
20
#include "access/xlog.h"
21
21
#include "access/xlogutils.h"
22
-
22
+ #include "catalog/pg_index.h"
23
23
24
24
/* There's room for a 16-bit vacuum cycle ID in BTPageOpaqueData */
25
25
typedef uint16 BTCycleId ;
Original file line number Diff line number Diff line change 14
14
#include "access/rmgr.h"
15
15
#include "access/xlogdefs.h"
16
16
#include "lib/stringinfo.h"
17
+ #include "replication/walsender.h"
17
18
#include "storage/buf.h"
18
19
#include "utils/pg_crc.h"
19
20
#include "utils/timestamp.h"
20
21
21
-
22
22
/*
23
23
* The overall layout of an XLOG record is:
24
24
* Fixed-size header (XLogRecord struct)
Original file line number Diff line number Diff line change 14
14
sed 's/->[a-zA-Z0-9_\.]*//g' "$FILE" >/tmp/$$a
15
15
echo "#include \"postgres.h\"" >/tmp/$$.c
16
16
echo "#include \"/tmp/$$a\"" >>/tmp/$$.c
17
+ # supress fcinfo errors
18
+ echo "#undef PG_GETARG_DATUM" >>/tmp/$$.c
19
+ echo "#define PG_GETARG_DATUM(n)" >>/tmp/$$.c
17
20
echo "void include_test(void);" >>/tmp/$$.c
18
21
echo "void include_test() {" >>/tmp/$$.c
19
22
pgdefine "$FILE" >>/tmp/$$.c
You can’t perform that action at this time.
0 commit comments