Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3df33180
Commit
3df33180
authored
Oct 31, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add #include "postgres.h", as required by all .c files
parent
99412aef
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
64 additions
and
20 deletions
+64
-20
src/backend/executor/execAmi.c
src/backend/executor/execAmi.c
+4
-1
src/backend/executor/execJunk.c
src/backend/executor/execJunk.c
+4
-1
src/backend/executor/execMain.c
src/backend/executor/execMain.c
+3
-1
src/backend/executor/execProcnode.c
src/backend/executor/execProcnode.c
+3
-1
src/backend/executor/execQual.c
src/backend/executor/execQual.c
+3
-1
src/backend/executor/execScan.c
src/backend/executor/execScan.c
+3
-1
src/backend/executor/execTuples.c
src/backend/executor/execTuples.c
+3
-1
src/backend/executor/execUtils.c
src/backend/executor/execUtils.c
+3
-1
src/backend/executor/nodeAgg.c
src/backend/executor/nodeAgg.c
+2
-0
src/backend/executor/nodeAppend.c
src/backend/executor/nodeAppend.c
+3
-1
src/backend/executor/nodeGroup.c
src/backend/executor/nodeGroup.c
+3
-1
src/backend/executor/nodeHash.c
src/backend/executor/nodeHash.c
+3
-1
src/backend/executor/nodeIndexscan.c
src/backend/executor/nodeIndexscan.c
+3
-1
src/backend/executor/nodeMaterial.c
src/backend/executor/nodeMaterial.c
+3
-1
src/backend/executor/nodeMergejoin.c
src/backend/executor/nodeMergejoin.c
+3
-1
src/backend/executor/nodeNestloop.c
src/backend/executor/nodeNestloop.c
+3
-1
src/backend/executor/nodeResult.c
src/backend/executor/nodeResult.c
+3
-1
src/backend/executor/nodeSeqscan.c
src/backend/executor/nodeSeqscan.c
+3
-1
src/backend/executor/nodeSort.c
src/backend/executor/nodeSort.c
+3
-1
src/backend/executor/nodeTee.c
src/backend/executor/nodeTee.c
+3
-1
src/backend/executor/nodeUnique.c
src/backend/executor/nodeUnique.c
+3
-1
No files found.
src/backend/executor/execAmi.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.
1.1.1 1996/07/09 06:21:24
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.
2 1996/10/31 10:11:21
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -27,6 +27,9 @@
...
@@ -27,6 +27,9 @@
*
*
*/
*/
#include <stdio.h>
/* for sprintf() */
#include <stdio.h>
/* for sprintf() */
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "storage/smgr.h"
#include "storage/smgr.h"
#include "executor/nodeSeqscan.h"
#include "executor/nodeSeqscan.h"
...
...
src/backend/executor/execJunk.c
View file @
3df33180
...
@@ -7,10 +7,13 @@
...
@@ -7,10 +7,13 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execJunk.c,v 1.
1.1.1 1996/07/09 06:21:24
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execJunk.c,v 1.
2 1996/10/31 10:11:23
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "nodes/relation.h"
#include "nodes/relation.h"
...
...
src/backend/executor/execMain.c
View file @
3df33180
...
@@ -26,10 +26,12 @@
...
@@ -26,10 +26,12 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
6 1996/10/26 04:13:05
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
7 1996/10/31 10:11:24
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeIndexscan.h"
#include "executor/nodeIndexscan.h"
#include "utils/builtins.h"
#include "utils/builtins.h"
...
...
src/backend/executor/execProcnode.c
View file @
3df33180
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.
1.1.1 1996/07/09 06:21:25
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.
2 1996/10/31 10:11:27
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -72,6 +72,8 @@
...
@@ -72,6 +72,8 @@
* in turn call these routines themselves on their subplans.
* in turn call these routines themselves on their subplans.
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeResult.h"
#include "executor/nodeResult.h"
#include "executor/nodeAppend.h"
#include "executor/nodeAppend.h"
...
...
src/backend/executor/execQual.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.
7 1996/10/26 04:13:11
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.
8 1996/10/31 10:11:28
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -29,6 +29,8 @@
...
@@ -29,6 +29,8 @@
* instead of doing needless copying. -cim 5/31/91
* instead of doing needless copying. -cim 5/31/91
*
*
*/
*/
#include "postgres.h"
#include "nodes/primnodes.h"
#include "nodes/primnodes.h"
#include "nodes/relation.h"
#include "nodes/relation.h"
...
...
src/backend/executor/execScan.c
View file @
3df33180
...
@@ -11,12 +11,14 @@
...
@@ -11,12 +11,14 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execScan.c,v 1.
1.1.1 1996/07/09 06:21:25
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execScan.c,v 1.
2 1996/10/31 10:11:34
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include <sys/file.h>
#include <sys/file.h>
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
...
...
src/backend/executor/execTuples.c
View file @
3df33180
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.
1.1.1 1996/07/09 06:21:25
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.
2 1996/10/31 10:11:38
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -116,6 +116,8 @@
...
@@ -116,6 +116,8 @@
* and the TupleTableSlot node in execnodes.h.
* and the TupleTableSlot node in execnodes.h.
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#undef ExecStoreTuple
#undef ExecStoreTuple
...
...
src/backend/executor/execUtils.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.
2 1996/08/26 06:30:3
3 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.
3 1996/10/31 10:11:4
3 scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -40,6 +40,8 @@
...
@@ -40,6 +40,8 @@
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "access/itup.h"
#include "access/itup.h"
#include "optimizer/clauses.h"
#include "optimizer/clauses.h"
...
...
src/backend/executor/nodeAgg.c
View file @
3df33180
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "access/heapam.h"
#include "access/heapam.h"
#include "catalog/pg_aggregate.h"
#include "catalog/pg_aggregate.h"
#include "catalog/catalog.h"
#include "catalog/catalog.h"
...
...
src/backend/executor/nodeAppend.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.
2 1996/10/26 04:13:26
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.
3 1996/10/31 10:11:54
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -52,6 +52,8 @@
...
@@ -52,6 +52,8 @@
* | | | |
* | | | |
* person employee student student-emp
* person employee student student-emp
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeAppend.h"
#include "executor/nodeAppend.h"
...
...
src/backend/executor/nodeGroup.c
View file @
3df33180
...
@@ -13,10 +13,12 @@
...
@@ -13,10 +13,12 @@
* columns. (ie. tuples from the same group are consecutive)
* columns. (ie. tuples from the same group are consecutive)
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.
1.1.1 1996/07/09 06:21:26
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.
2 1996/10/31 10:11:59
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "access/heapam.h"
#include "access/heapam.h"
#include "catalog/catalog.h"
#include "catalog/catalog.h"
#include "executor/executor.h"
#include "executor/executor.h"
...
...
src/backend/executor/nodeHash.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.
5 1996/10/26 04:13:31
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.
6 1996/10/31 10:12:00
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
#include <stdio.h>
/* for sprintf() */
#include <stdio.h>
/* for sprintf() */
#include <math.h>
#include <math.h>
#include <sys/file.h>
#include <sys/file.h>
#include "postgres.h"
#include "storage/fd.h"
/* for SEEK_ */
#include "storage/fd.h"
/* for SEEK_ */
#include "storage/ipc.h"
#include "storage/ipc.h"
...
...
src/backend/executor/nodeIndexscan.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.
2 1996/10/30 06:08:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.
3 1996/10/31 10:12:05
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -28,6 +28,8 @@
...
@@ -28,6 +28,8 @@
* collected and merged with the genam stuff.
* collected and merged with the genam stuff.
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeIndexscan.h"
#include "executor/nodeIndexscan.h"
...
...
src/backend/executor/nodeMaterial.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.
2 1996/07/30 07:45:31
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.
3 1996/10/31 10:12:09
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
* ExecEndMaterial - shutdown node and subnodes
* ExecEndMaterial - shutdown node and subnodes
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeMaterial.h"
#include "executor/nodeMaterial.h"
...
...
src/backend/executor/nodeMergejoin.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMergejoin.c,v 1.
1.1.1 1996/07/09 06:21:27
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMergejoin.c,v 1.
2 1996/10/31 10:12:11
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -75,6 +75,8 @@
...
@@ -75,6 +75,8 @@
* problem described above -cim 4/23/91
* problem described above -cim 4/23/91
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeMergejoin.h"
#include "executor/nodeMergejoin.h"
#include "utils/lsyscache.h"
#include "utils/lsyscache.h"
...
...
src/backend/executor/nodeNestloop.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeNestloop.c,v 1.
1.1.1 1996/07/09 06:21:27
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeNestloop.c,v 1.
2 1996/10/31 10:12:14
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
* ExecInitNestLoop - initialize the join
* ExecInitNestLoop - initialize the join
* ExecEndNestLoop - shut down the join
* ExecEndNestLoop - shut down the join
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeNestloop.h"
#include "executor/nodeNestloop.h"
#include "executor/nodeIndexscan.h"
#include "executor/nodeIndexscan.h"
...
...
src/backend/executor/nodeResult.c
View file @
3df33180
...
@@ -27,10 +27,12 @@
...
@@ -27,10 +27,12 @@
* SeqScan (emp.all)
* SeqScan (emp.all)
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeResult.c,v 1.
1.1.1 1996/07/09 06:21:27
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeResult.c,v 1.
2 1996/10/31 10:12:18
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeResult.h"
#include "executor/nodeResult.h"
...
...
src/backend/executor/nodeSeqscan.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSeqscan.c,v 1.
1.1.1 1996/07/09 06:21:27
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSeqscan.c,v 1.
2 1996/10/31 10:12:20
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
* ExecRestrPos restores scan position
* ExecRestrPos restores scan position
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeSeqscan.h"
#include "executor/nodeSeqscan.h"
#include "parser/parsetree.h"
#include "parser/parsetree.h"
...
...
src/backend/executor/nodeSort.c
View file @
3df33180
...
@@ -7,10 +7,12 @@
...
@@ -7,10 +7,12 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.
2 1996/07/30 07:45:35
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.
3 1996/10/31 10:12:22
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeSort.h"
#include "executor/nodeSort.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
...
...
src/backend/executor/nodeTee.c
View file @
3df33180
...
@@ -15,12 +15,14 @@
...
@@ -15,12 +15,14 @@
* ExecEndTee
* ExecEndTee
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/Attic/nodeTee.c,v 1.
1.1.1 1996/07/09 06:21:27
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/Attic/nodeTee.c,v 1.
2 1996/10/31 10:12:24
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include <sys/file.h>
#include <sys/file.h>
#include "postgres.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/relcache.h"
#include "utils/relcache.h"
#include "storage/bufmgr.h"
/* for IncrBufferRefCount */
#include "storage/bufmgr.h"
/* for IncrBufferRefCount */
...
...
src/backend/executor/nodeUnique.c
View file @
3df33180
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeUnique.c,v 1.
2 1996/07/19 06:27:59
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeUnique.c,v 1.
3 1996/10/31 10:12:26
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
* sorted order.
* sorted order.
*
*
*/
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/executor.h"
#include "executor/nodeUnique.h"
#include "executor/nodeUnique.h"
#include "optimizer/clauses.h"
#include "optimizer/clauses.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment