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

Commit6608278

Browse files
committed
these ones have their dependencies cleaned up
1 parent500ce42 commit6608278

File tree

8 files changed

+33
-45
lines changed

8 files changed

+33
-45
lines changed

‎src/include/access/hash.h

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: hash.h,v 1.2 1996/10/20 06:35:01 scrappy Exp $
9+
* $Id: hash.h,v 1.3 1996/11/05 10:37:02 scrappy Exp $
1010
*
1111
* NOTES
1212
*modeled after Margo Seltzer's hash implementation for unix.
@@ -16,13 +16,11 @@
1616
#ifndefHASH_H
1717
#defineHASH_H
1818

19-
#include"access/htup.h"
20-
#include"access/itup.h"
21-
#include"storage/bufpage.h"
22-
#include"access/sdir.h"
23-
#include"access/funcindex.h"
24-
#include"storage/block.h"
25-
#include"access/relscan.h"
19+
#include<access/sdir.h>
20+
#include<access/funcindex.h>
21+
#include<storage/bufpage.h>
22+
#include<access/relscan.h>
23+
#include<access/itup.h>
2624

2725
/*
2826
* An overflow page is a spare page allocated for storing data whose

‎src/include/access/hio.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: hio.h,v 1.2 1996/10/31 09:46:38 scrappy Exp $
9+
* $Id: hio.h,v 1.3 1996/11/05 10:37:05 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefHIO_H
1414
#defineHIO_H
1515

16+
#include<access/htup.h>
17+
#include<utils/rel.h>
1618

17-
#include"storage/block.h"
18-
#include"access/htup.h"
19-
#include"utils/rel.h"
2019

2120
externvoidRelationPutHeapTuple(Relationrelation,BlockNumberblockIndex,
2221
HeapTupletuple);

‎src/include/access/iqual.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,16 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: iqual.h,v 1.3 1996/10/31 09:46:39 scrappy Exp $
9+
* $Id: iqual.h,v 1.4 1996/11/05 10:37:03 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefIQUAL_H
1414
#defineIQUAL_H
1515

16+
#include<access/skey.h>
17+
#include<access/itup.h>
1618

17-
#include"storage/itemid.h"
18-
#include"utils/rel.h"
19-
#include"access/skey.h"
20-
#include"access/itup.h"
2119

2220
/* ----------------
2321
*index tuple qualification support

‎src/include/access/istrat.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: istrat.h,v 1.3 1996/11/0508:18:13 scrappy Exp $
9+
* $Id: istrat.h,v 1.4 1996/11/0510:37:04 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefISTRAT_H
1414
#defineISTRAT_H
1515

16+
#include<utils/rel.h>
17+
#include<access/strat.h>
1618

1719
/*
1820
* StrategyNumberIsValid --

‎src/include/access/nbtree.h

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,21 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: nbtree.h,v 1.2 1996/10/23 07:41:29 scrappy Exp $
9+
* $Id: nbtree.h,v 1.3 1996/11/05 10:37:08 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefNBTREE_H
1414
#defineNBTREE_H
1515

16-
#include"access/attnum.h"
17-
#include"access/itup.h"
18-
#include"access/htup.h"
19-
#include"access/tupdesc.h"
20-
21-
#include"access/istrat.h"
22-
#include"access/funcindex.h"
23-
#include"access/relscan.h"
24-
#include"access/sdir.h"
25-
#include"nodes/pg_list.h"
26-
#include"storage/page.h"
27-
#include"storage/bufpage.h"
28-
#include"storage/item.h"
29-
#include"utils/memutils.h"
16+
#include<access/sdir.h>
17+
#include<access/relscan.h>
18+
#include<storage/itemid.h>
19+
#include<storage/page.h>
20+
#include<access/funcindex.h>
21+
#include<access/itup.h>
22+
#include<storage/buf.h>
23+
#include<storage/itemptr.h>
3024

3125
/*
3226
* BTPageOpaqueData -- At the end of every page, we store a pointer

‎src/include/access/valid.h

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,16 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: valid.h,v 1.2 1996/10/31 09:46:44 scrappy Exp $
9+
* $Id: valid.h,v 1.3 1996/11/05 10:37:07 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefVALID_H
1414
#defineVALID_H
1515

16-
#include"access/skey.h"
17-
#include"storage/buf.h"
18-
#include"utils/tqual.h"
19-
#include"access/tupdesc.h"
20-
#include"utils/rel.h"
21-
#include"storage/bufpage.h"
16+
#include<utils/tqual.h>
17+
#include<storage/bufpage.h>
18+
#include<utils/rel.h>
2219

2320
/* ----------------
2421
*extern decl's

‎src/include/catalog/catalog.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: catalog.h,v 1.1 1996/08/28 01:56:21 scrappy Exp $
9+
* $Id: catalog.h,v 1.2 1996/11/05 10:37:14 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefCATALOG_H
1414
#defineCATALOG_H
1515

16-
#include"access/tupdesc.h"
16+
#include<access/tupdesc.h>
1717

1818
externchar*relpath(charrelname[]);
1919
externboolIsSystemRelationName(char*relname);

‎src/include/catalog/pg_proc.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: pg_proc.h,v 1.3 1996/11/03 12:12:32 scrappy Exp $
9+
* $Id: pg_proc.h,v 1.4 1996/11/05 10:37:16 scrappy Exp $
1010
*
1111
* NOTES
1212
* The script catalog/genbki.sh reads this file and generates .bki
@@ -22,14 +22,14 @@
2222
#ifndefPG_PROC_H
2323
#definePG_PROC_H
2424

25+
#include<tcop/dest.h>
26+
2527
/* ----------------
2628
*postgres.h contains the system type definintions and the
2729
*CATALOG(), BOOTSTRAP and DATA() sugar words so this file
2830
*can be read by both genbki.sh and the C compiler.
2931
* ----------------
3032
*/
31-
#include"nodes/pg_list.h"
32-
#include"tcop/dest.h"
3333

3434
/* ----------------
3535
*pg_proc definition. cpp turns this into

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp