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

Commit050d148

Browse files
committed
One more to go
1 parent6608278 commit050d148

File tree

6 files changed

+62
-72
lines changed

6 files changed

+62
-72
lines changed

‎src/backend/access/rtree/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
# Makefile for access/rtree
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/Makefile,v 1.2 1996/10/31 08:52:50 scrappy Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/Makefile,v 1.3 1996/11/05 10:54:15 scrappy Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
SRCDIR = ../../..
1212
include ../../../Makefile.global
1313

14-
INCLUDE_OPT = -I../../port/$(PORTNAME)\
14+
INCLUDE_OPT = -I../..\
15+
-I../../port/$(PORTNAME)\
1516
-I../../../include
1617

1718
CFLAGS+=$(INCLUDE_OPT)

‎src/backend/access/rtree/rtget.c

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,25 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.5 1996/11/03 22:58:03 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.6 1996/11/05 10:54:16 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include<string.h>
16-
#include<time.h>
17-
18-
#include"postgres.h"
19-
20-
#include"storage/bufmgr.h"
21-
22-
#include"access/sdir.h"
23-
24-
#include"access/htup.h"
25-
#include"utils/palloc.h"
26-
#include"access/relscan.h"
27-
#include"access/itup.h"
28-
#include"access/iqual.h"
15+
#include<postgres.h>
2916

30-
#include"access/rtree.h"
17+
#include<storage/bufmgr.h>
18+
#include<access/sdir.h>
19+
#include<access/relscan.h>
20+
#include<access/iqual.h>
21+
#include<access/rtree.h>
22+
#include<storage/bufpage.h>
23+
#ifndefHAVE_MEMMOVE
24+
# include<regex/utils.h>
25+
#else
26+
# include<string.h>
27+
#endif
3128

32-
#include"storage/bufpage.h"
3329

3430
staticOffsetNumberfindnext(IndexScanDescs,Pagep,OffsetNumbern,
3531
ScanDirectiondir);

‎src/backend/access/rtree/rtproc.c

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,19 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtproc.c,v 1.3 1996/10/23 07:39:23 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtproc.c,v 1.4 1996/11/05 10:54:17 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include<string.h>
15+
#include<postgres.h>
1616

17-
#include"postgres.h"
18-
19-
#include"utils/geo-decls.h"
20-
#include"utils/palloc.h"
17+
#include<utils/geo-decls.h>
18+
#ifndefHAVE_MEMMOVE
19+
# include<regex/utils.h>
20+
#else
21+
# include<string.h>
22+
#endif
2123

2224
BOX
2325
*rt_box_union(BOX*a,BOX*b)

‎src/backend/access/rtree/rtree.c

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,30 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.8 1996/11/03 22:58:06 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.9 1996/11/05 10:54:18 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include<stdio.h>
16-
17-
#include"postgres.h"
18-
#include"access/genam.h"
19-
20-
#include"utils/palloc.h"
21-
#include"catalog/index.h"
22-
23-
#include"access/rtscan.h"
24-
25-
#include"storage/lmgr.h"
26-
27-
#include"access/rtree.h"
28-
29-
#include"storage/bufmgr.h"
30-
31-
#include"utils/geo-decls.h"
32-
33-
#include"executor/executor.h"
34-
35-
#include"access/heapam.h"
36-
37-
#include"storage/bufpage.h"
15+
#include<postgres.h>
16+
17+
#include<access/genam.h>
18+
#include<catalog/index.h>
19+
#include<access/rtscan.h>
20+
#include<storage/lmgr.h>
21+
#include<access/rtree.h>
22+
#include<storage/bufmgr.h>
23+
#include<utils/geo-decls.h>
24+
#include<executor/executor.h>
25+
#include<access/heapam.h>
26+
#include<fmgr.h>
27+
#include<storage/bufpage.h>
28+
29+
#ifndefHAVE_MEMMOVE
30+
# include<regex/utils.h>
31+
#else
32+
# include<string.h>
33+
#endif
3834

3935
typedefstructSPLITVEC {
4036
OffsetNumber*spl_left;

‎src/backend/access/rtree/rtscan.c

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,25 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.7 1996/11/03 22:58:09 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.8 1996/11/05 10:54:19 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include<string.h>
16-
17-
#include"postgres.h"
18-
19-
#include"storage/bufmgr.h"
20-
#include"access/genam.h"
15+
#include<postgres.h>
2116

22-
#include"utils/palloc.h"
23-
#include"access/htup.h"
24-
#include"storage/lmgr.h"
25-
#include"storage/bufpage.h"
26-
#include<stdio.h>
17+
#include<storage/bufmgr.h>
18+
#include<access/genam.h>
19+
#include<storage/lmgr.h>
20+
#include<storage/bufpage.h>
21+
#include<access/rtree.h>
22+
#include<access/rtstrat.h>
23+
#ifndefHAVE_MEMMOVE
24+
# include<regex/utils.h>
25+
#else
26+
# include<string.h>
27+
#endif
2728

28-
#include"access/rtree.h"
29-
#include"access/rtstrat.h"
3029

3130
/* routines defined and used here */
3231
staticvoidrtregscan(IndexScanDescs);

‎src/backend/access/rtree/rtstrat.c

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,16 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtstrat.c,v 1.4 1996/11/03 22:58:10 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtstrat.c,v 1.5 1996/11/05 10:54:20 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include"postgres.h"
15+
#include<postgres.h>
1616

17-
#include"utils/rel.h"
18-
19-
#include"storage/off.h"
20-
#include"storage/block.h"
21-
#include"access/rtree.h"
22-
23-
#include"access/istrat.h"
17+
#include<utils/rel.h>
18+
#include<access/rtree.h>
19+
#include<access/istrat.h>
2420

2521
/*
2622
* Note: negate, commute, and negatecommute all assume that operators are

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp