File tree Expand file tree Collapse file tree 24 files changed +56
-54
lines changed Expand file tree Collapse file tree 24 files changed +56
-54
lines changed Original file line number Diff line number Diff line change 1
1
/****************************************************************************
2
2
* pending.c
3
- * $Id: pending.c,v 1.25 2006/05/30 22:12:12 tgl Exp $
4
- * $PostgreSQL: pgsql/contrib/dbmirror/pending.c,v 1.25 2006/05/30 22:12:12 tgl Exp $
3
+ * $Id: pending.c,v 1.26 2006/07/11 17:26:58 momjian Exp $
4
+ * $PostgreSQL: pgsql/contrib/dbmirror/pending.c,v 1.26 2006/07/11 17:26:58 momjian Exp $
5
5
*
6
6
* This file contains a trigger for Postgresql-7.x to record changes to tables
7
7
* to a pending table for mirroring.
33
33
#include "postgres.h"
34
34
35
35
#include "executor/spi.h"
36
+
36
37
#include "commands/sequence.h"
37
38
#include "commands/trigger.h"
38
39
#include "utils/lsyscache.h"
Original file line number Diff line number Diff line change 1
1
/*
2
- * $PostgreSQL: pgsql/contrib/pgstattuple/pgstattuple.c,v 1.22 2006/07/06 02:18:07 momjian Exp $
2
+ * $PostgreSQL: pgsql/contrib/pgstattuple/pgstattuple.c,v 1.23 2006/07/11 17:26:58 momjian Exp $
3
3
*
4
4
* Copyright (c) 2001,2002 Tatsuo Ishii
5
5
*
26
26
27
27
#include "fmgr.h"
28
28
#include "funcapi.h"
29
- #include "access/heapam.h"
30
- #include "access/nbtree.h"
31
29
#include "access/gist_private.h"
32
30
#include "access/hash.h"
31
+ #include "access/heapam.h"
32
+ #include "access/nbtree.h"
33
33
#include "access/transam.h"
34
34
#include "catalog/namespace.h"
35
35
#include "utils/builtins.h"
Original file line number Diff line number Diff line change 4
4
*/
5
5
6
6
#include "executor/spi.h" /* this is what you need to work with SPI */
7
+
7
8
#include "commands/trigger.h" /* -"- and triggers */
8
9
#include <ctype.h>
9
10
Original file line number Diff line number Diff line change 1
1
#include "postgres.h"
2
2
3
- #include "storage/bufpage.h"
4
3
#include "access/skey.h"
4
+ #include "storage/bufpage.h"
5
5
#include "access/gist.h"
6
6
7
7
#include "query.h"
Original file line number Diff line number Diff line change 3
3
*
4
4
* Resource managers definition
5
5
*
6
- * $PostgreSQL: pgsql/src/backend/access/transam/rmgr.c,v 1.22 2006/05/02 11:28:54 teodor Exp $
6
+ * $PostgreSQL: pgsql/src/backend/access/transam/rmgr.c,v 1.23 2006/07/11 17:26:58 momjian Exp $
7
7
*/
8
8
#include "postgres.h"
9
9
10
10
#include "access/clog.h"
11
+ #include "access/gin.h"
11
12
#include "access/gist_private.h"
12
13
#include "access/hash.h"
13
14
#include "access/heapam.h"
14
15
#include "access/multixact.h"
15
16
#include "access/nbtree.h"
16
- #include "access/gin.h"
17
17
#include "access/xact.h"
18
18
#include "access/xlog_internal.h"
19
19
#include "commands/dbcommands.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/catalog/pg_constraint.c,v 1.31 2006/03/05 15:58:23 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/backend/catalog/pg_constraint.c,v 1.32 2006/07/11 17:26:58 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
#include "postgres.h"
16
16
17
- #include "access/heapam.h"
18
17
#include "access/genam.h"
18
+ #include "access/heapam.h"
19
19
#include "catalog/catalog.h"
20
20
#include "catalog/dependency.h"
21
21
#include "catalog/indexing.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/catalog/pg_conversion.c,v 1.30 2006/05/30 13:36:30 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/backend/catalog/pg_conversion.c,v 1.31 2006/07/11 17:26:58 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
17
17
#include "access/heapam.h"
18
18
#include "catalog/dependency.h"
19
19
#include "catalog/indexing.h"
20
+ #include "catalog/namespace.h"
20
21
#include "catalog/pg_conversion.h"
21
22
#include "catalog/pg_namespace.h"
22
23
#include "catalog/pg_proc.h"
23
- #include "catalog/namespace .h"
24
+ #include "mb/pg_wchar .h"
24
25
#include "utils/builtins.h"
25
- #include "utils/lsyscache.h"
26
- #include "utils/syscache.h"
27
26
#include "utils/catcache.h"
28
- #include "mb/pg_wchar.h"
29
27
#include "utils/fmgroids.h"
28
+ #include "utils/lsyscache.h"
29
+ #include "utils/syscache.h"
30
30
#include "utils/acl.h"
31
31
#include "miscadmin.h"
32
32
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/catalog/pg_depend.c,v 1.20 2006/03/05 15:58:23 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/backend/catalog/pg_depend.c,v 1.21 2006/07/11 17:26:58 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
#include "postgres.h"
16
16
17
17
#include "access/genam.h"
18
18
#include "access/heapam.h"
19
- #include "catalog/indexing.h"
20
19
#include "catalog/dependency.h"
20
+ #include "catalog/indexing.h"
21
21
#include "catalog/pg_depend.h"
22
22
#include "miscadmin.h"
23
23
#include "utils/fmgroids.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/catalog/pg_proc.c,v 1.138 2006/03/05 15:58:23 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/backend/catalog/pg_proc.c,v 1.139 2006/07/11 17:26:58 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
23
23
#include "catalog/pg_type.h"
24
24
#include "executor/functions.h"
25
25
#include "funcapi.h"
26
- #include "miscadmin.h"
27
26
#include "mb/pg_wchar.h"
27
+ #include "miscadmin.h"
28
28
#include "parser/parse_type.h"
29
29
#include "tcop/pquery.h"
30
30
#include "tcop/tcopprot.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/catalog/pg_shdepend.c,v 1.9 2006/05/04 16:07:29 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/backend/catalog/pg_shdepend.c,v 1.10 2006/07/11 17:26:58 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
#include "postgres.h"
16
16
17
17
#include "access/genam.h"
18
18
#include "access/heapam.h"
19
- #include "utils/acl.h"
20
19
#include "catalog/dependency.h"
21
20
#include "catalog/indexing.h"
22
21
#include "catalog/pg_authid.h"
36
35
#include "commands/typecmds.h"
37
36
#include "lib/stringinfo.h"
38
37
#include "miscadmin.h"
38
+ #include "utils/acl.h"
39
39
#include "utils/fmgroids.h"
40
40
#include "utils/syscache.h"
41
41
You can’t perform that action at this time.
0 commit comments