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

Commit434201d

Browse files
committed
another pass through.
Note. all include files that have been hit so far have had extraneous include files cleaned out and are reduced to...the lowest common "include file", based on 'cc -Wall -I. test.c', where test.c is:#include "postgres.h"#include "<top of branches>" (ie. top of branches this time was utils/fcache2.h)
1 parent6348294 commit434201d

File tree

6 files changed

+24
-21
lines changed

6 files changed

+24
-21
lines changed

‎src/include/access/relscan.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: relscan.h,v 1.4 1996/11/03 08:17:22 scrappy Exp $
9+
* $Id: relscan.h,v 1.5 1996/11/04 08:52:41 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefRELSCAN_H
1414
#defineRELSCAN_H
1515

16-
#include"utils/rel.h"
17-
#include"utils/tqual.h"
18-
#include"storage/buf.h"
16+
#include<utils/tqual.h>
17+
#include<storage/buf.h>
18+
#include<utils/rel.h>
1919

2020
typedefItemPointerDataMarkData;
2121

‎src/include/executor/hashjoin.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: hashjoin.h,v 1.2 1996/10/19 06:27:33 scrappy Exp $
9+
* $Id: hashjoin.h,v 1.3 1996/11/04 08:52:46 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefHASHJOIN_H
1414
#defineHASHJOIN_H
1515

16-
#include"storage/ipc.h"
16+
#include<storage/ipc.h>
1717

1818
/* -----------------
1919
* have to use relative address as pointers in the hashtable

‎src/include/executor/tuptable.h

Lines changed: 4 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: tuptable.h,v 1.3 1996/11/03 12:12:42 scrappy Exp $
9+
* $Id: tuptable.h,v 1.4 1996/11/04 08:52:47 scrappy Exp $
1010
*
1111
* NOTES
1212
* The tuple table interface is getting pretty ugly.
@@ -17,8 +17,9 @@
1717
#ifndefTUPTABLE_H
1818
#defineTUPTABLE_H
1919

20-
#include"access/htup.h"
21-
#include"storage/buf.h"
20+
#include<storage/buf.h>
21+
#include<access/tupdesc.h>
22+
#include<access/htup.h>
2223

2324
/* ----------------
2425
*Note: the executor tuple table is managed and manipulated by special

‎src/include/nodes/execnodes.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: execnodes.h,v 1.5 1996/11/03 12:12:50 scrappy Exp $
9+
* $Id: execnodes.h,v 1.6 1996/11/04 08:52:54 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefEXECNODES_H
1414
#defineEXECNODES_H
1515

16-
#include"executor/hashjoin.h"
17-
#include"nodes/primnodes.h"
18-
#include"access/funcindex.h"
19-
#include"access/relscan.h"
20-
#include"executor/tuptable.h"
21-
#include"nodes/params.h"
22-
#include"access/sdir.h"
23-
#include"nodes/memnodes.h"
16+
#include<nodes/memnodes.h>
17+
#include<nodes/primnodes.h>
18+
#include<executor/hashjoin.h>
19+
#include<access/relscan.h>
20+
#include<access/sdir.h>
21+
#include<nodes/params.h>
22+
#include<executor/tuptable.h>
23+
#include<access/funcindex.h>
2424

2525
/* ----------------
2626
* IndexInfo information

‎src/include/nodes/params.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: params.h,v 1.2 1996/10/31 09:49:13 scrappy Exp $
9+
* $Id: params.h,v 1.3 1996/11/04 08:52:57 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefPARAMS_H
1414
#definePARAMS_H
1515

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

1818
/* ----------------------------------------------------------------
1919
*

‎src/include/utils/fcache2.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: fcache2.h,v 1.1 1996/08/28 01:58:58 scrappy Exp $
9+
* $Id: fcache2.h,v 1.2 1996/11/04 08:53:07 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndefFCACHE2_H
1414
#defineFCACHE2_H
1515

16+
#include<nodes/execnodes.h>
17+
1618
externvoid
1719
setFcache(Node*node,Oidfoid,List*argList,ExprContext*econtext);
1820

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp