File tree Expand file tree Collapse file tree 14 files changed +37
-37
lines changed Expand file tree Collapse file tree 14 files changed +37
-37
lines changed Original file line number Diff line number Diff line change 5
5
* DMN Digital Music Network.
6
6
* www.dmn.com
7
7
*
8
- * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.24 2006/05/30 22:12:13 tgl Exp $
8
+ * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.25 2006/07/11 17:04:12 momjian Exp $
9
9
*
10
10
* Copyright (C) Digital Music Network
11
11
* December 20, 2001
20
20
#include <sys/types.h>
21
21
22
22
#include "access/heapam.h"
23
+ #include "access/tupmacs.h"
24
+ #include "access/xact.h"
23
25
#include "catalog/indexing.h"
24
26
#include "catalog/pg_proc.h"
25
27
#include "catalog/pg_type.h"
26
28
#include "executor/executor.h"
27
- #include "utils/syscache.h"
28
- #include "access/tupmacs.h"
29
- #include "access/xact.h"
30
29
#include "fmgr.h"
31
30
#include "miscadmin.h"
32
31
#include "utils/array.h"
33
32
#include "utils/builtins.h"
34
33
#include "utils/memutils.h"
34
+ #include "utils/syscache.h"
35
35
#include "utils/lsyscache.h"
36
36
37
37
PG_MODULE_MAGIC ;
Original file line number Diff line number Diff line change 1
1
/*
2
2
* PostgreSQL definitions for managed Large Objects.
3
3
*
4
- * $PostgreSQL: pgsql/contrib/lo/lo.c,v 1.16 2006/05/30 22:12:13 tgl Exp $
4
+ * $PostgreSQL: pgsql/contrib/lo/lo.c,v 1.17 2006/07/11 17:04:12 momjian Exp $
5
5
*
6
6
*/
7
7
8
8
#include "postgres.h"
9
9
10
- /* Required for largeobjects */
11
- #include "libpq/libpq-fs.h"
12
- #include "libpq/be-fsstubs.h"
13
-
14
10
/* Required for SPI */
15
11
#include "executor/spi.h"
16
12
13
+ /* Required for largeobjects */
14
+ #include "libpq/be-fsstubs.h"
15
+ #include "libpq/libpq-fs.h"
16
+
17
17
/* Required for triggers */
18
18
#include "commands/trigger.h"
19
19
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.76 2006/03/05 15:58:20 momjian Exp $
12
+ * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.77 2006/07/11 17:04:12 momjian Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
16
16
17
17
#include "postgres.h"
18
18
19
19
#include "access/heapam.h"
20
- #include "access/tuptoaster.h"
21
20
#include "access/itup.h"
21
+ #include "access/tuptoaster.h"
22
22
#include "catalog/pg_type.h"
23
23
24
24
Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/gin/ginarrayproc.c,v 1.1 2006/05/02 11:28:54 teodor Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/gin/ginarrayproc.c,v 1.2 2006/07/11 17:04:12 momjian Exp $
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
19
19
#include "miscadmin.h"
20
20
#include "storage/freespace.h"
21
21
#include "utils/array.h"
22
+ #include "utils/builtins.h"
22
23
#include "utils/lsyscache.h"
23
24
#include "utils/syscache.h"
24
25
#include "utils/typcache.h"
25
- #include "utils/builtins.h"
26
26
#include "access/gin.h"
27
27
28
28
#define GinOverlapStrategy 1
Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.2 2006/05/02 22:25:10 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.3 2006/07/11 17:04:12 momjian Exp $
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
19
19
#include "catalog/index.h"
20
20
#include "miscadmin.h"
21
21
#include "storage/freespace.h"
22
- #include "utils/memutils.h"
23
22
#include "storage/freespace.h"
24
23
#include "storage/smgr.h"
24
+ #include "utils/memutils.h"
25
25
#include "commands/vacuum.h"
26
26
27
27
typedef struct {
Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/gist/gistget.c,v 1.58 2006/06/28 12:00:14 teodor Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/gist/gistget.c,v 1.59 2006/07/11 17:04:12 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
#include "postgres.h"
16
16
17
- #include "access/itup.h"
18
17
#include "access/gist_private.h"
18
+ #include "access/itup.h"
19
19
#include "executor/execdebug.h"
20
20
#include "pgstat.h"
21
21
#include "utils/memutils.h"
Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/gist/gistvacuum.c,v 1.23 2006/07/02 02:23:18 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/gist/gistvacuum.c,v 1.24 2006/07/11 17:04:12 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
21
21
#include "catalog/index.h"
22
22
#include "commands/vacuum.h"
23
23
#include "miscadmin.h"
24
- #include "utils/memutils.h"
25
24
#include "storage/freespace.h"
25
+ #include "utils/memutils.h"
26
26
#include "storage/smgr.h"
27
27
28
28
Original file line number Diff line number Diff line change 42
42
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
43
43
* Portions Copyright (c) 1994, Regents of the University of California
44
44
*
45
- * $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.17 2006/03/24 04:32:12 tgl Exp $
45
+ * $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.18 2006/07/11 17: 04:13 momjian Exp $
46
46
*
47
47
*-------------------------------------------------------------------------
48
48
*/
52
52
#include "access/slru.h"
53
53
#include "access/xact.h"
54
54
#include "miscadmin.h"
55
- #include "utils/memutils.h"
56
55
#include "storage/backendid.h"
57
56
#include "storage/lmgr.h"
57
+ #include "utils/memutils.h"
58
58
#include "storage/procarray.h"
59
59
60
60
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.306 2006/07/10 16:20:49 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.307 2006/07/11 17:04:13 momjian Exp $
12
12
*
13
13
*
14
14
* INTERFACE ROUTINES
29
29
*/
30
30
#include "postgres.h"
31
31
32
- #include "access/heapam.h"
33
32
#include "access/genam.h"
33
+ #include "access/heapam.h"
34
34
#include "catalog/catalog.h"
35
35
#include "catalog/dependency.h"
36
36
#include "catalog/heap.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.143 2006/07/03 22:45:38 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.144 2006/07/11 17:04:13 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
32
32
#include "mb/pg_wchar.h"
33
33
#include "miscadmin.h"
34
34
#include "optimizer/clauses.h"
35
- #include "parser/parsetree.h"
36
35
#include "parser/parse_coerce.h"
37
36
#include "parser/parse_expr.h"
38
37
#include "parser/parse_func.h"
38
+ #include "parser/parsetree.h"
39
39
#include "utils/acl.h"
40
40
#include "utils/builtins.h"
41
41
#include "utils/fmgroids.h"
You can’t perform that action at this time.
0 commit comments