Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings

Commit155eaf9

Browse files
committed
Cosmetic: extra include path removed
1 parent978e73c commit155eaf9

26 files changed

+126
-126
lines changed

‎src/compat/pg_compat.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* ------------------------------------------------------------------------
1212
*/
1313

14-
#include"compat/pg_compat.h"
14+
#include"../include/compat/pg_compat.h"
1515

16-
#include"utils.h"
16+
#include"../include/utils.h"
1717

1818
#include"access/htup_details.h"
1919
#include"catalog/pg_class.h"

‎src/compat/rowmarks_fix.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
* ------------------------------------------------------------------------
1010
*/
1111

12-
#include"compat/rowmarks_fix.h"
13-
#include"planner_tree_modification.h"
12+
#include"../include/compat/rowmarks_fix.h"
13+
#include"../include/planner_tree_modification.h"
1414

1515
#include"access/sysattr.h"
1616
#include"catalog/pg_type.h"

‎src/debug_print.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
#include<unistd.h>
12-
#include"rangeset.h"
12+
#include"include/rangeset.h"
1313

1414
#include"postgres.h"
1515
#include"fmgr.h"

‎src/declarative.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#include"pathman.h"
2-
#include"declarative.h"
3-
#include"utils.h"
4-
#include"partition_creation.h"
1+
#include"include/pathman.h"
2+
#include"include/declarative.h"
3+
#include"include/utils.h"
4+
#include"include/partition_creation.h"
55

66
#include"access/htup_details.h"
77
#include"catalog/namespace.h"

‎src/hooks.c

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
* ------------------------------------------------------------------------
1111
*/
1212

13-
#include"compat/pg_compat.h"
14-
#include"compat/rowmarks_fix.h"
13+
#include"include/compat/pg_compat.h"
14+
#include"include/compat/rowmarks_fix.h"
1515

1616
#ifPG_VERSION_NUM >=120000
1717
#include"access/table.h"
1818
#endif
1919

20-
#include"declarative.h"
21-
#include"hooks.h"
22-
#include"init.h"
23-
#include"partition_filter.h"
24-
#include"partition_router.h"
25-
#include"pathman_workers.h"
26-
#include"planner_tree_modification.h"
27-
#include"runtime_append.h"
28-
#include"runtime_merge_append.h"
29-
#include"utility_stmt_hooking.h"
30-
#include"utils.h"
31-
#include"xact_handling.h"
20+
#include"include/declarative.h"
21+
#include"include/hooks.h"
22+
#include"include/init.h"
23+
#include"include/partition_filter.h"
24+
#include"include/partition_router.h"
25+
#include"include/pathman_workers.h"
26+
#include"include/planner_tree_modification.h"
27+
#include"include/runtime_append.h"
28+
#include"include/runtime_merge_append.h"
29+
#include"include/utility_stmt_hooking.h"
30+
#include"include/utils.h"
31+
#include"include/xact_handling.h"
3232

3333
#include"access/transam.h"
3434
#include"access/xact.h"

‎src/include/compat/pg_compat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#warning "It is STRONGLY recommended to use pg_pathman with PostgreSQL 9.5.4 since it contains important fixes"
2020
#endif
2121

22-
#include"compat/debug_compat_features.h"
22+
#include"debug_compat_features.h"
2323

2424
#include"postgres.h"
2525
#include"access/tupdesc.h"

‎src/include/compat/rowmarks_fix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#ifndefROWMARKS_FIX_H
1313
#defineROWMARKS_FIX_H
1414

15-
#include"compat/debug_compat_features.h"
15+
#include"debug_compat_features.h"
1616

1717
#include"postgres.h"
1818
#include"nodes/parsenodes.h"

‎src/init.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
* ------------------------------------------------------------------------
1212
*/
1313

14-
#include"compat/pg_compat.h"
15-
16-
#include"hooks.h"
17-
#include"init.h"
18-
#include"pathman.h"
19-
#include"pathman_workers.h"
20-
#include"relation_info.h"
21-
#include"utils.h"
14+
#include"include/compat/pg_compat.h"
15+
16+
#include"include/hooks.h"
17+
#include"include/init.h"
18+
#include"include/pathman.h"
19+
#include"include/pathman_workers.h"
20+
#include"include/relation_info.h"
21+
#include"include/utils.h"
2222

2323
#include"access/htup_details.h"
2424
#include"access/heapam.h"

‎src/nodes_common.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
*
88
* ------------------------------------------------------------------------
99
*/
10-
#include"compat/pg_compat.h"
10+
#include"include/compat/pg_compat.h"
1111

12-
#include"init.h"
13-
#include"nodes_common.h"
14-
#include"runtime_append.h"
15-
#include"utils.h"
12+
#include"include/init.h"
13+
#include"include/nodes_common.h"
14+
#include"include/runtime_append.h"
15+
#include"include/utils.h"
1616

1717
#include"nodes/nodeFuncs.h"
1818
#ifPG_VERSION_NUM >=120000

‎src/partition_creation.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
*-------------------------------------------------------------------------
99
*/
1010

11-
#include"init.h"
12-
#include"partition_creation.h"
13-
#include"partition_filter.h"
14-
#include"pathman.h"
15-
#include"pathman_workers.h"
16-
#include"compat/pg_compat.h"
17-
#include"xact_handling.h"
11+
#include"include/init.h"
12+
#include"include/partition_creation.h"
13+
#include"include/partition_filter.h"
14+
#include"include/pathman.h"
15+
#include"include/pathman_workers.h"
16+
#include"include/compat/pg_compat.h"
17+
#include"include/xact_handling.h"
1818

1919
#include"access/htup_details.h"
2020
#include"access/reloptions.h"

‎src/partition_filter.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
* ------------------------------------------------------------------------
99
*/
1010

11-
#include"compat/pg_compat.h"
12-
#include"init.h"
13-
#include"nodes_common.h"
14-
#include"pathman.h"
15-
#include"partition_creation.h"
16-
#include"partition_filter.h"
17-
#include"partition_router.h"
18-
#include"utils.h"
11+
#include"include/compat/pg_compat.h"
12+
#include"include/init.h"
13+
#include"include/nodes_common.h"
14+
#include"include/pathman.h"
15+
#include"include/partition_creation.h"
16+
#include"include/partition_filter.h"
17+
#include"include/partition_router.h"
18+
#include"include/utils.h"
1919

2020
#include"access/htup_details.h"
2121
#ifPG_VERSION_NUM >=120000

‎src/partition_overseer.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include"postgres.h"
22

3-
#include"partition_filter.h"
4-
#include"partition_overseer.h"
5-
#include"partition_router.h"
6-
#include"planner_tree_modification.h"
3+
#include"include/partition_filter.h"
4+
#include"include/partition_overseer.h"
5+
#include"include/partition_router.h"
6+
#include"include/planner_tree_modification.h"
77

88
CustomScanMethodspartition_overseer_plan_methods;
99
CustomExecMethodspartition_overseer_exec_methods;

‎src/partition_router.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* ------------------------------------------------------------------------
1111
*/
1212

13-
#include"partition_filter.h"
14-
#include"partition_router.h"
15-
#include"compat/pg_compat.h"
13+
#include"include/partition_filter.h"
14+
#include"include/partition_router.h"
15+
#include"include/compat/pg_compat.h"
1616

1717
#ifPG_VERSION_NUM >=120000
1818
#include"access/table.h"

‎src/pathman_workers.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
*-------------------------------------------------------------------------
1515
*/
1616

17-
#include"init.h"
18-
#include"partition_creation.h"
19-
#include"pathman_workers.h"
20-
#include"relation_info.h"
21-
#include"utils.h"
22-
#include"xact_handling.h"
17+
#include"include/init.h"
18+
#include"include/partition_creation.h"
19+
#include"include/pathman_workers.h"
20+
#include"include/relation_info.h"
21+
#include"include/utils.h"
22+
#include"include/xact_handling.h"
2323

2424
#include"access/htup_details.h"
2525
#include"access/xact.h"

‎src/pg_pathman.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
* ------------------------------------------------------------------------
1010
*/
1111

12-
#include"compat/pg_compat.h"
13-
#include"compat/rowmarks_fix.h"
14-
15-
#include"init.h"
16-
#include"hooks.h"
17-
#include"pathman.h"
18-
#include"partition_filter.h"
19-
#include"partition_router.h"
20-
#include"partition_overseer.h"
21-
#include"planner_tree_modification.h"
22-
#include"runtime_append.h"
23-
#include"runtime_merge_append.h"
12+
#include"include/compat/pg_compat.h"
13+
#include"include/compat/rowmarks_fix.h"
14+
15+
#include"include/init.h"
16+
#include"include/hooks.h"
17+
#include"include/pathman.h"
18+
#include"include/partition_filter.h"
19+
#include"include/partition_router.h"
20+
#include"include/partition_overseer.h"
21+
#include"include/planner_tree_modification.h"
22+
#include"include/runtime_append.h"
23+
#include"include/runtime_merge_append.h"
2424

2525
#include"postgres.h"
2626
#include"access/genam.h"

‎src/pl_funcs.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
* ------------------------------------------------------------------------
99
*/
1010

11-
#include"compat/pg_compat.h"
12-
13-
#include"init.h"
14-
#include"pathman.h"
15-
#include"partition_creation.h"
16-
#include"partition_filter.h"
17-
#include"relation_info.h"
18-
#include"xact_handling.h"
19-
#include"utils.h"
11+
#include"include/compat/pg_compat.h"
12+
13+
#include"include/init.h"
14+
#include"include/pathman.h"
15+
#include"include/partition_creation.h"
16+
#include"include/partition_filter.h"
17+
#include"include/relation_info.h"
18+
#include"include/xact_handling.h"
19+
#include"include/utils.h"
2020

2121
#include"access/htup_details.h"
2222
#ifPG_VERSION_NUM >=120000

‎src/pl_hash_funcs.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
* ------------------------------------------------------------------------
99
*/
1010

11-
#include"pathman.h"
12-
#include"partition_creation.h"
13-
#include"relation_info.h"
14-
#include"utils.h"
11+
#include"include/pathman.h"
12+
#include"include/partition_creation.h"
13+
#include"include/relation_info.h"
14+
#include"include/utils.h"
1515

1616
#include"utils/builtins.h"
1717
#include"utils/typcache.h"

‎src/pl_range_funcs.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
* ------------------------------------------------------------------------
99
*/
1010

11-
#include"init.h"
12-
#include"pathman.h"
13-
#include"partition_creation.h"
14-
#include"relation_info.h"
15-
#include"utils.h"
16-
#include"xact_handling.h"
11+
#include"include/init.h"
12+
#include"include/pathman.h"
13+
#include"include/partition_creation.h"
14+
#include"include/relation_info.h"
15+
#include"include/utils.h"
16+
#include"include/xact_handling.h"
1717

1818
#ifPG_VERSION_NUM >=120000
1919
#include"access/table.h"

‎src/planner_tree_modification.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
* ------------------------------------------------------------------------
1111
*/
1212

13-
#include"compat/rowmarks_fix.h"
14-
15-
#include"declarative.h"
16-
#include"partition_filter.h"
17-
#include"partition_router.h"
18-
#include"partition_overseer.h"
19-
#include"planner_tree_modification.h"
20-
#include"relation_info.h"
21-
#include"rewrite/rewriteManip.h"
13+
#include"include/compat/rowmarks_fix.h"
14+
15+
#include"include/declarative.h"
16+
#include"include/partition_filter.h"
17+
#include"include/partition_router.h"
18+
#include"include/partition_overseer.h"
19+
#include"include/planner_tree_modification.h"
20+
#include"include/relation_info.h"
2221

22+
#include"rewrite/rewriteManip.h"
2323
#ifPG_VERSION_NUM >=120000
2424
#include"access/table.h"
2525
#endif

‎src/rangeset.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* ------------------------------------------------------------------------
99
*/
1010

11-
#include"compat/pg_compat.h"
12-
#include"rangeset.h"
11+
#include"include/compat/pg_compat.h"
12+
#include"include/rangeset.h"
1313

1414

1515
staticIndexRangeirange_handle_cover_internal(IndexRangeir_covering,

‎src/relation_info.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
* ------------------------------------------------------------------------
99
*/
1010

11-
#include"compat/pg_compat.h"
11+
#include"include/compat/pg_compat.h"
1212

13-
#include"relation_info.h"
14-
#include"init.h"
15-
#include"utils.h"
16-
#include"xact_handling.h"
13+
#include"include/relation_info.h"
14+
#include"include/init.h"
15+
#include"include/utils.h"
16+
#include"include/xact_handling.h"
1717

1818
#include"access/htup_details.h"
1919
#ifPG_VERSION_NUM >=120000

‎src/runtime_append.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* ------------------------------------------------------------------------
99
*/
1010

11-
#include"compat/pg_compat.h"
11+
#include"include/compat/pg_compat.h"
1212

13-
#include"runtime_append.h"
13+
#include"include/runtime_append.h"
1414

1515
#include"utils/guc.h"
1616

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp