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
946e80c4
Commit
946e80c4
authored
Jun 15, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Final #include cleanup.
parent
df43800f
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
29 additions
and
68 deletions
+29
-68
src/backend/access/heap/heapam.c
src/backend/access/heap/heapam.c
+1
-2
src/backend/access/nbtree/nbtree.c
src/backend/access/nbtree/nbtree.c
+1
-3
src/backend/access/nbtree/nbtsort.c
src/backend/access/nbtree/nbtsort.c
+1
-3
src/backend/access/rtree/rtget.c
src/backend/access/rtree/rtget.c
+1
-2
src/backend/commands/command.c
src/backend/commands/command.c
+1
-6
src/backend/executor/execAmi.c
src/backend/executor/execAmi.c
+1
-2
src/backend/executor/execMain.c
src/backend/executor/execMain.c
+1
-2
src/backend/executor/execQual.c
src/backend/executor/execQual.c
+1
-2
src/backend/executor/execUtils.c
src/backend/executor/execUtils.c
+1
-2
src/backend/executor/nodeAppend.c
src/backend/executor/nodeAppend.c
+1
-2
src/backend/executor/nodeHash.c
src/backend/executor/nodeHash.c
+1
-2
src/backend/executor/nodeIndexscan.c
src/backend/executor/nodeIndexscan.c
+1
-2
src/backend/executor/nodeMergejoin.c
src/backend/executor/nodeMergejoin.c
+1
-2
src/backend/executor/nodeNestloop.c
src/backend/executor/nodeNestloop.c
+1
-2
src/backend/executor/nodeSeqscan.c
src/backend/executor/nodeSeqscan.c
+1
-2
src/backend/executor/nodeSort.c
src/backend/executor/nodeSort.c
+1
-2
src/backend/executor/nodeTidscan.c
src/backend/executor/nodeTidscan.c
+1
-2
src/backend/parser/parse_func.c
src/backend/parser/parse_func.c
+1
-4
src/backend/rewrite/rewriteDefine.c
src/backend/rewrite/rewriteDefine.c
+1
-2
src/backend/storage/file/fd.c
src/backend/storage/file/fd.c
+1
-2
src/backend/storage/lmgr/proc.c
src/backend/storage/lmgr/proc.c
+2
-3
src/backend/tcop/fastpath.c
src/backend/tcop/fastpath.c
+1
-2
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+2
-3
src/backend/utils/adt/date.c
src/backend/utils/adt/date.c
+1
-3
src/backend/utils/fmgr/dfmgr.c
src/backend/utils/fmgr/dfmgr.c
+2
-2
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+1
-7
No files found.
src/backend/access/heap/heapam.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.7
0 2000/06/02 10:20:24 vadim
Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.7
1 2000/06/15 04:09:34 momjian
Exp $
*
*
* INTERFACE ROUTINES
...
...
@@ -81,7 +81,6 @@
#include "access/valid.h"
#include "catalog/catalog.h"
#include "miscadmin.h"
#include "utils/builtins.h"
#include "utils/inval.h"
#include "utils/relcache.h"
...
...
src/backend/access/nbtree/nbtree.c
View file @
946e80c4
...
...
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.5
7 2000/06/14 05:24:37 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.5
8 2000/06/15 04:09:36 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -25,8 +25,6 @@
#include "catalog/index.h"
#include "executor/executor.h"
#include "miscadmin.h"
#include "tcop/tcopprot.h"
#include "utils/guc.h"
bool
BuildingBtree
=
false
;
/* see comment in btbuild() */
bool
FastBuild
=
true
;
/* use sort/build instead of insertion
...
...
src/backend/access/nbtree/nbtsort.c
View file @
946e80c4
...
...
@@ -28,7 +28,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsort.c,v 1.5
3 2000/05/31 00:28:14 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsort.c,v 1.5
4 2000/06/15 04:09:36 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -36,8 +36,6 @@
#include "postgres.h"
#include "access/nbtree.h"
#include "tcop/tcopprot.h"
#include "utils/guc.h"
#include "utils/tuplesort.h"
...
...
src/backend/access/rtree/rtget.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.2
2 2000/06/15 03:32:00
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.2
3 2000/06/15 04:09:41
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -18,7 +18,6 @@
#include "access/iqual.h"
#include "access/relscan.h"
#include "access/rtree.h"
#include "storage/off.h"
static
OffsetNumber
findnext
(
IndexScanDesc
s
,
Page
p
,
OffsetNumber
n
,
ScanDirection
dir
);
...
...
src/backend/commands/command.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.
79 2000/06/12 03:40:29
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.
80 2000/06/15 04:09:45
momjian Exp $
*
* NOTES
* The PortalExecutorHeapMemory crap needs to be eliminated
...
...
@@ -37,11 +37,6 @@
#include "commands/trigger.h"
#ifdef _DROP_COLUMN_HACK__
#include "catalog/pg_index.h"
#include "catalog/pg_relcheck.h"
#include "access/genam.h"
#include "commands/comment.h"
#include "commands/defrem.h"
#include "optimizer/clauses.h"
#include "parser/parse.h"
#endif
/* _DROP_COLUMN_HACK__ */
...
...
src/backend/executor/execAmi.c
View file @
946e80c4
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: execAmi.c,v 1.4
6 2000/04/12 17:15:07
momjian Exp $
* $Id: execAmi.c,v 1.4
7 2000/06/15 04:09:50
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -33,7 +33,6 @@
#include "access/heapam.h"
#include "catalog/heap.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "executor/nodeAgg.h"
#include "executor/nodeAppend.h"
#include "executor/nodeGroup.h"
...
...
src/backend/executor/execMain.c
View file @
946e80c4
...
...
@@ -27,7 +27,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.11
6 2000/06/10 05:16:38 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.11
7 2000/06/15 04:09:50 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -38,7 +38,6 @@
#include "commands/trigger.h"
#include "executor/execdebug.h"
#include "executor/execdefs.h"
#include "executor/executor.h"
#include "miscadmin.h"
#include "optimizer/var.h"
#include "parser/parsetree.h"
...
...
src/backend/executor/execQual.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.7
1 2000/06/13 07:34:58 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.7
2 2000/06/15 04:09:50 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -37,7 +37,6 @@
#include "catalog/pg_language.h"
#include "executor/execFlatten.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "executor/functions.h"
#include "executor/nodeSubplan.h"
#include "utils/builtins.h"
...
...
src/backend/executor/execUtils.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.5
8 2000/06/15 03:32:09
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.5
9 2000/06/15 04:09:52
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -50,7 +50,6 @@
#include "catalog/catalog.h"
#include "catalog/pg_index.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "miscadmin.h"
#include "utils/builtins.h"
#include "utils/fmgroids.h"
...
...
src/backend/executor/nodeAppend.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.3
2 2000/06/10 05:16:38 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeAppend.c,v 1.3
3 2000/06/15 04:09:52 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -59,7 +59,6 @@
#include "access/heapam.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "executor/nodeAppend.h"
#include "parser/parsetree.h"
...
...
src/backend/executor/nodeHash.c
View file @
946e80c4
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: nodeHash.c,v 1.4
6 2000/05/31 00:28:17 petere
Exp $
* $Id: nodeHash.c,v 1.4
7 2000/06/15 04:09:52 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -24,7 +24,6 @@
#include "postgres.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "executor/nodeHash.h"
#include "executor/nodeHashjoin.h"
#include "miscadmin.h"
...
...
src/backend/executor/nodeIndexscan.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.5
0 2000/05/23 16:56:37 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.5
1 2000/06/15 04:09:52 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -36,7 +36,6 @@
#include "access/genam.h"
#include "access/heapam.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "executor/nodeIndexscan.h"
#include "nodes/nodeFuncs.h"
#include "optimizer/clauses.h"
...
...
src/backend/executor/nodeMergejoin.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMergejoin.c,v 1.3
4 2000/01/26 05:56:23
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMergejoin.c,v 1.3
5 2000/06/15 04:09:52
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -71,7 +71,6 @@
#include "catalog/pg_operator.h"
#include "executor/execdebug.h"
#include "executor/execdefs.h"
#include "executor/executor.h"
#include "executor/nodeMergejoin.h"
#include "utils/lsyscache.h"
#include "utils/syscache.h"
...
...
src/backend/executor/nodeNestloop.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeNestloop.c,v 1.1
5 2000/01/26 05:56:23
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeNestloop.c,v 1.1
6 2000/06/15 04:09:52
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -21,7 +21,6 @@
#include "postgres.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "executor/nodeNestloop.h"
/* ----------------------------------------------------------------
...
...
src/backend/executor/nodeSeqscan.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSeqscan.c,v 1.2
2 2000/01/26 05:56:23
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSeqscan.c,v 1.2
3 2000/06/15 04:09:52
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -27,7 +27,6 @@
#include "access/heapam.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "executor/nodeSeqscan.h"
#include "parser/parsetree.h"
...
...
src/backend/executor/nodeSort.c
View file @
946e80c4
...
...
@@ -8,14 +8,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.2
6 2000/04/12 17:15:09
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSort.c,v 1.2
7 2000/06/15 04:09:52
momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/execdebug.h"
#include "executor/nodeSort.h"
#include "utils/tuplesort.h"
...
...
src/backend/executor/nodeTidscan.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.
8 2000/06/08 22:37:03
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.
9 2000/06/15 04:09:52
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -24,7 +24,6 @@
*/
#include "postgres.h"
#include "executor/executor.h"
#include "executor/execdebug.h"
#include "executor/nodeTidscan.h"
#include "access/heapam.h"
...
...
src/backend/parser/parse_func.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.8
4 2000/06/15 03:32:20
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.8
5 2000/06/15 04:09:54
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -22,7 +22,6 @@
#include "catalog/pg_aggregate.h"
#include "catalog/pg_inherits.h"
#include "catalog/pg_proc.h"
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "parser/parse_agg.h"
#include "parser/parse_coerce.h"
...
...
@@ -30,8 +29,6 @@
#include "parser/parse_func.h"
#include "parser/parse_relation.h"
#include "parser/parse_type.h"
#include "utils/acl.h"
#include "utils/builtins.h"
#include "utils/fmgroids.h"
#include "utils/lsyscache.h"
#include "utils/syscache.h"
...
...
src/backend/rewrite/rewriteDefine.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteDefine.c,v 1.4
5 2000/05/30 00:49:51
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteDefine.c,v 1.4
6 2000/06/15 04:09:58
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,7 +16,6 @@
#include "postgres.h"
#include "access/heapam.h"
#include "utils/builtins.h"
#include "lib/stringinfo.h"
#include "parser/parse_relation.h"
#include "rewrite/rewriteDefine.h"
...
...
src/backend/storage/file/fd.c
View file @
946e80c4
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/file/fd.c,v 1.6
0 2000/06/14 03:19:24
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/file/fd.c,v 1.6
1 2000/06/15 04:10:00
momjian Exp $
*
* NOTES:
*
...
...
@@ -49,7 +49,6 @@
#include "postgres.h"
#include "miscadmin.h"
#include "storage/fd.h"
#include "storage/ipc.h"
/*
* Problem: Postgres does a system(ld...) to do dynamic loading.
...
...
src/backend/storage/lmgr/proc.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.7
4 2000/05/31 00:28:30 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.7
5 2000/06/15 04:10:07 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -47,7 +47,7 @@
* This is so that we can support more backends. (system-wide semaphore
* sets run out pretty fast.) -ay 4/95
*
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.7
4 2000/05/31 00:28:30 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.7
5 2000/06/15 04:10:07 momjian
Exp $
*/
#include <sys/time.h>
#include <unistd.h>
...
...
@@ -66,7 +66,6 @@
/* In Ultrix and QNX, sem.h must be included after ipc.h */
#include <sys/sem.h>
#include "storage/lock.h"
#include "storage/proc.h"
void
HandleDeadLock
(
SIGNAL_ARGS
);
...
...
src/backend/tcop/fastpath.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.4
1 2000/06/05 07:28:49 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.4
2 2000/06/15 04:10:18 momjian
Exp $
*
* NOTES
* This cruft is the server side of PQfn.
...
...
@@ -67,7 +67,6 @@
#include "libpq/libpq.h"
#include "libpq/pqformat.h"
#include "tcop/fastpath.h"
#include "utils/builtins.h"
#include "utils/syscache.h"
...
...
src/backend/tcop/postgres.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.1
59 2000/06/08 22:37:26
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.1
60 2000/06/15 04:10:19
momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
...
...
@@ -48,7 +48,6 @@
#include "nodes/print.h"
#include "optimizer/cost.h"
#include "optimizer/planner.h"
#include "parser/parse.h"
#include "parser/parser.h"
#include "rewrite/rewriteHandler.h"
#include "tcop/fastpath.h"
...
...
@@ -1383,7 +1382,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
if
(
!
IsUnderPostmaster
)
{
puts
(
"
\n
POSTGRES backend interactive interface "
);
puts
(
"$Revision: 1.1
59 $ $Date: 2000/06/08 22:37:26
$
\n
"
);
puts
(
"$Revision: 1.1
60 $ $Date: 2000/06/15 04:10:19
$
\n
"
);
}
/*
...
...
src/backend/utils/adt/date.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.4
6 2000/06/15 03:32:28
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.4
7 2000/06/15 04:10:23
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -21,9 +21,7 @@
#endif
#include "miscadmin.h"
#include "utils/date.h"
#include "utils/datetime.h"
#include "utils/nabstime.h"
#include "utils/builtins.h"
static
int
date2tm
(
DateADT
dateVal
,
int
*
tzp
,
struct
tm
*
tm
,
double
*
fsec
,
char
**
tzn
);
...
...
src/backend/utils/fmgr/dfmgr.c
View file @
946e80c4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.4
1 2000/05/30 00:49:55
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.4
2 2000/06/15 04:10:29
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -19,8 +19,8 @@
#include "catalog/pg_proc.h"
#include "dynloader.h"
#include "utils/builtins.h"
#include "utils/dynamic_loader.h"
#include "utils/builtins.h"
#include "utils/syscache.h"
...
...
src/backend/utils/misc/guc.c
View file @
946e80c4
...
...
@@ -4,7 +4,7 @@
* Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options.
*
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.
2 2000/06/04 15:06:30 petere
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.
3 2000/06/15 04:10:30 momjian
Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
...
...
@@ -20,7 +20,6 @@
#include "utils/guc.h"
#include "access/transam.h"
#include "commands/async.h"
#include "miscadmin.h"
#include "optimizer/cost.h"
...
...
@@ -28,13 +27,8 @@
#include "optimizer/paths.h"
#include "optimizer/planmain.h"
#include "parser/parse_expr.h"
#include "storage/fd.h"
#include "storage/lock.h"
#include "storage/proc.h"
#include "storage/spin.h"
#include "tcop/tcopprot.h"
#include "utils/builtins.h"
#include "utils/elog.h"
/* XXX should be in a header file */
...
...
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