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
f7f2e18f
Commit
f7f2e18f
authored
Nov 24, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove tqual.h includes not needed.
parent
1409819a
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
44 additions
and
50 deletions
+44
-50
src/backend/access/common/tupdesc.c
src/backend/access/common/tupdesc.c
+1
-2
src/backend/access/gist/gist.c
src/backend/access/gist/gist.c
+1
-0
src/backend/bootstrap/bootparse.y
src/backend/bootstrap/bootparse.y
+1
-2
src/backend/bootstrap/bootscanner.l
src/backend/bootstrap/bootscanner.l
+1
-2
src/backend/bootstrap/bootstrap.c
src/backend/bootstrap/bootstrap.c
+1
-2
src/backend/catalog/heap.c
src/backend/catalog/heap.c
+2
-1
src/backend/catalog/index.c
src/backend/catalog/index.c
+6
-5
src/backend/catalog/pg_operator.c
src/backend/catalog/pg_operator.c
+2
-1
src/backend/catalog/pg_type.c
src/backend/catalog/pg_type.c
+2
-1
src/backend/executor/execMain.c
src/backend/executor/execMain.c
+2
-1
src/backend/parser/parse_query.c
src/backend/parser/parse_query.c
+1
-2
src/backend/rewrite/rewriteRemove.c
src/backend/rewrite/rewriteRemove.c
+1
-2
src/backend/storage/lmgr/lmgr.c
src/backend/storage/lmgr/lmgr.c
+1
-2
src/backend/tcop/aclchk.c
src/backend/tcop/aclchk.c
+2
-1
src/backend/utils/adt/acl.c
src/backend/utils/adt/acl.c
+2
-2
src/backend/utils/adt/selfuncs.c
src/backend/utils/adt/selfuncs.c
+1
-2
src/backend/utils/adt/sets.c
src/backend/utils/adt/sets.c
+2
-1
src/backend/utils/cache/catcache.c
src/backend/utils/cache/catcache.c
+6
-6
src/backend/utils/init/globals.c
src/backend/utils/init/globals.c
+1
-2
src/backend/utils/init/postinit.c
src/backend/utils/init/postinit.c
+1
-2
src/backend/utils/sort/psort.c
src/backend/utils/sort/psort.c
+1
-3
src/backend/utils/time/tqual.c
src/backend/utils/time/tqual.c
+1
-2
src/include/access/relscan.h
src/include/access/relscan.h
+2
-2
src/include/access/valid.h
src/include/access/valid.h
+2
-2
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+1
-2
No files found.
src/backend/access/common/tupdesc.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.2
7 1997/10/25 01:08:45
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.2
8 1997/11/24 05:07:42
momjian Exp $
*
*
* NOTES
* NOTES
* some of the executor utility code such as "ExecTypeFromTL" should be
* some of the executor utility code such as "ExecTypeFromTL" should be
...
@@ -24,7 +24,6 @@
...
@@ -24,7 +24,6 @@
#include <nodes/parsenodes.h>
#include <nodes/parsenodes.h>
#include <utils/builtins.h>
#include <utils/builtins.h>
#include <utils/fcache.h>
#include <utils/fcache.h>
#include <utils/tqual.h>
#include <utils/syscache.h>
#include <utils/syscache.h>
#ifndef HAVE_MEMMOVE
#ifndef HAVE_MEMMOVE
...
...
src/backend/access/gist/gist.c
View file @
f7f2e18f
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
#include <storage/bufpage.h>
#include <storage/bufpage.h>
#include <storage/lmgr.h>
#include <storage/lmgr.h>
#include <utils/syscache.h>
#include <utils/syscache.h>
#include <utils/tqual.h>
#ifndef HAVE_MEMMOVE
#ifndef HAVE_MEMMOVE
#include <regex/utils.h>
#include <regex/utils.h>
...
...
src/backend/bootstrap/bootparse.y
View file @
f7f2e18f
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.
6 1997/11/21 18:04:03
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.
7 1997/11/24 05:07:54
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
#include "storage/off.h"
#include "storage/off.h"
#include "storage/itemptr.h"
#include "storage/itemptr.h"
#include "access/htup.h"
#include "access/htup.h"
#include "utils/tqual.h"
#include "nodes/parsenodes.h"
#include "nodes/parsenodes.h"
#include "access/xact.h"
#include "access/xact.h"
...
...
src/backend/bootstrap/bootscanner.l
View file @
f7f2e18f
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootscanner.l,v 1.
7 1997/09/08 03:19:53
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootscanner.l,v 1.
8 1997/11/24 05:07:56
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -39,7 +39,6 @@
...
@@ -39,7 +39,6 @@
#include "nodes/primnodes.h"
#include "nodes/primnodes.h"
#include "utils/nabstime.h"
#include "utils/nabstime.h"
#include "access/htup.h"
#include "access/htup.h"
#include "utils/tqual.h"
#include "nodes/parsenodes.h"
#include "nodes/parsenodes.h"
#include "parser/scansup.h"
#include "parser/scansup.h"
...
...
src/backend/bootstrap/bootstrap.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.2
8 1997/11/20 23:20:33
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.2
9 1997/11/24 05:08:01
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -40,7 +40,6 @@
...
@@ -40,7 +40,6 @@
#include "storage/itemptr.h"
#include "storage/itemptr.h"
#include "utils/nabstime.h"
#include "utils/nabstime.h"
#include "access/htup.h"
#include "access/htup.h"
#include "utils/tqual.h"
#include "storage/buf.h"
#include "storage/buf.h"
#include "access/relscan.h"
#include "access/relscan.h"
#include "access/heapam.h"
#include "access/heapam.h"
...
...
src/backend/catalog/heap.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.3
2 1997/11/21 18:04:11
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.3
3 1997/11/24 05:08:07
momjian Exp $
*
*
* INTERFACE ROUTINES
* INTERFACE ROUTINES
* heap_creatr() - Create an uncataloged heap relation
* heap_creatr() - Create an uncataloged heap relation
...
@@ -51,6 +51,7 @@
...
@@ -51,6 +51,7 @@
#include <utils/builtins.h>
#include <utils/builtins.h>
#include <utils/mcxt.h>
#include <utils/mcxt.h>
#include <utils/relcache.h>
#include <utils/relcache.h>
#include <utils/tqual.h>
#include <nodes/plannodes.h>
#include <nodes/plannodes.h>
#ifndef HAVE_MEMMOVE
#ifndef HAVE_MEMMOVE
#include <regex/utils.h>
#include <regex/utils.h>
...
...
src/backend/catalog/index.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.2
8 1997/11/21 19:59:28
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.2
9 1997/11/24 05:08:11
momjian Exp $
*
*
*
*
* INTERFACE ROUTINES
* INTERFACE ROUTINES
...
@@ -30,18 +30,19 @@
...
@@ -30,18 +30,19 @@
#include <fmgr.h>
#include <fmgr.h>
#include <access/genam.h>
#include <access/genam.h>
#include <access/heapam.h>
#include <access/heapam.h>
#include <utils/builtins.h>
#include <storage/lmgr.h>
#include <miscadmin.h>
#include <access/xact.h>
#include <access/xact.h>
#include <parser/catalog_utils.h>
#include <parser/catalog_utils.h>
#include <storage/smgr.h>
#include <storage/smgr.h>
#include <storage/lmgr.h>
#include <utils/builtins.h>
#include <miscadmin.h>
#include <utils/mcxt.h>
#include <utils/mcxt.h>
#include <utils/relcache.h>
#include <utils/relcache.h>
#include <utils/syscache.h>
#include <utils/tqual.h>
#include <bootstrap/bootstrap.h>
#include <bootstrap/bootstrap.h>
#include <catalog/catname.h>
#include <catalog/catname.h>
#include <catalog/catalog.h>
#include <catalog/catalog.h>
#include <utils/syscache.h>
#include <catalog/indexing.h>
#include <catalog/indexing.h>
#include <catalog/heap.h>
#include <catalog/heap.h>
#include <catalog/index.h>
#include <catalog/index.h>
...
...
src/backend/catalog/pg_operator.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.1
5 1997/11/20 23:20:49
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.1
6 1997/11/24 05:08:15
momjian Exp $
*
*
* NOTES
* NOTES
* these routines moved here from commands/define.c and somewhat cleaned up.
* these routines moved here from commands/define.c and somewhat cleaned up.
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#include <catalog/pg_proc.h>
#include <catalog/pg_proc.h>
#include <utils/syscache.h>
#include <utils/syscache.h>
#include <utils/tqual.h>
#include <access/heapam.h>
#include <access/heapam.h>
#include <parser/catalog_utils.h>
#include <parser/catalog_utils.h>
#include <catalog/catname.h>
#include <catalog/catname.h>
...
...
src/backend/catalog/pg_type.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.1
2 1997/11/20 23:20:50
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.1
3 1997/11/24 05:08:17
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#include <access/heapam.h>
#include <access/heapam.h>
#include <access/relscan.h>
#include <access/relscan.h>
#include <utils/builtins.h>
#include <utils/builtins.h>
#include <utils/tqual.h>
#include <fmgr.h>
#include <fmgr.h>
#include <parser/catalog_utils.h>
#include <parser/catalog_utils.h>
#include <catalog/catname.h>
#include <catalog/catname.h>
...
...
src/backend/executor/execMain.c
View file @
f7f2e18f
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.3
2 1997/11/21 18:10:06
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.3
3 1997/11/24 05:08:20
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -42,6 +42,7 @@
...
@@ -42,6 +42,7 @@
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/acl.h"
#include "utils/acl.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "utils/tqual.h"
#include "parser/parsetree.h"
/* rt_fetch() */
#include "parser/parsetree.h"
/* rt_fetch() */
#include "storage/bufmgr.h"
#include "storage/bufmgr.h"
#include "storage/lmgr.h"
#include "storage/lmgr.h"
...
...
src/backend/parser/parse_query.c
View file @
f7f2e18f
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.2
4 1997/11/21 18:10:55
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.2
5 1997/11/24 05:08:27
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
#include "fmgr.h"
#include "fmgr.h"
#include "access/heapam.h"
#include "access/heapam.h"
#include "utils/tqual.h"
#include "access/tupmacs.h"
#include "access/tupmacs.h"
#include "utils/builtins.h"
#include "utils/builtins.h"
#include "utils/elog.h"
#include "utils/elog.h"
...
...
src/backend/rewrite/rewriteRemove.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteRemove.c,v 1.
6 1997/11/20 23:22:37
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteRemove.c,v 1.
7 1997/11/24 05:08:40
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "utils/elog.h"
/* for elog stuff */
#include "utils/elog.h"
/* for elog stuff */
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/tqual.h"
/* 'NowTimeQual' defined here.. */
#include "access/heapam.h"
/* heap AM calls defined here */
#include "access/heapam.h"
/* heap AM calls defined here */
#include "fmgr.h"
/* for CHAR_16_EQ */
#include "fmgr.h"
/* for CHAR_16_EQ */
...
...
src/backend/storage/lmgr/lmgr.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.
8 1997/09/08 21:47:19
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.
9 1997/11/24 05:08:43
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -26,7 +26,6 @@
...
@@ -26,7 +26,6 @@
#include "access/htup.h"
#include "access/htup.h"
#include "access/relscan.h"
#include "access/relscan.h"
#include "access/skey.h"
#include "access/skey.h"
#include "utils/tqual.h"
#include "access/xact.h"
#include "access/xact.h"
#include "storage/block.h"
#include "storage/block.h"
...
...
src/backend/tcop/aclchk.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.1
8 1997/11/20 23:22:50
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.1
9 1997/11/24 05:08:47
momjian Exp $
*
*
* NOTES
* NOTES
* See acl.h.
* See acl.h.
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
#include "catalog/pg_proc.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_user.h"
#include "catalog/pg_user.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "utils/tqual.h"
#include "parser/catalog_utils.h"
#include "parser/catalog_utils.h"
#include "fmgr.h"
#include "fmgr.h"
...
...
src/backend/utils/adt/acl.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.
19 1997/11/01 05:21:38
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.
20 1997/11/24 05:08:54
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -17,8 +17,8 @@
...
@@ -17,8 +17,8 @@
#include <utils/memutils.h>
#include <utils/memutils.h>
#include "utils/acl.h"
#include "utils/acl.h"
#include "catalog/pg_user.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "catalog/pg_user.h"
#include "miscadmin.h"
#include "miscadmin.h"
static
char
*
getid
(
char
*
s
,
char
*
n
);
static
char
*
getid
(
char
*
s
,
char
*
n
);
...
...
src/backend/utils/adt/selfuncs.c
View file @
f7f2e18f
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.1
1 1997/11/20 23:23
:03 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.1
2 1997/11/24 05:09
:03 momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include "postgres.h"
#include "postgres.h"
#include "access/heapam.h"
#include "access/heapam.h"
#include "utils/tqual.h"
/* for NowTimeQual */
#include "fmgr.h"
#include "fmgr.h"
#include "utils/builtins.h"
/* for textout() prototype and where the
#include "utils/builtins.h"
/* for textout() prototype and where the
* declarations go */
* declarations go */
...
...
src/backend/utils/adt/sets.c
View file @
f7f2e18f
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/sets.c,v 1.
8 1997/11/20 23:23:05
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/sets.c,v 1.
9 1997/11/24 05:09:04
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include "catalog/indexing.h"
/* for Num_pg_proc_indices */
#include "catalog/indexing.h"
/* for Num_pg_proc_indices */
#include "storage/lmgr.h"
#include "storage/lmgr.h"
#include "utils/sets.h"
/* for GENERICSETNAME */
#include "utils/sets.h"
/* for GENERICSETNAME */
#include "utils/tqual.h"
#include "tcop/dest.h"
#include "tcop/dest.h"
#include "fmgr.h"
#include "fmgr.h"
...
...
src/backend/utils/cache/catcache.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.1
7 1997/11/20 23:23:08
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.1
8 1997/11/24 05:09:09
momjian Exp $
*
*
* Notes:
* Notes:
* XXX This needs to use exception.h to handle recovery when
* XXX This needs to use exception.h to handle recovery when
...
@@ -19,18 +19,18 @@
...
@@ -19,18 +19,18 @@
#include "postgres.h"
#include "postgres.h"
#include "access/heapam.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "access/genam.h"
#include "utils/builtins.h"
#include "utils/tqual.h"
#include "utils/tqual.h"
#include "storage/bufpage.h"
#include "utils/builtins.h"
#include "access/valid.h"
#include "miscadmin.h"
#include "utils/portal.h"
#include "utils/portal.h"
#include "utils/catcache.h"
#include "utils/catcache.h"
#include "fmgr.h"
/* for F_BOOLEQ, etc. DANGER */
#include "utils/elog.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/mcxt.h"
#include "utils/mcxt.h"
#include "utils/rel.h"
#include "utils/rel.h"
#include "storage/bufpage.h"
#include "access/valid.h"
#include "miscadmin.h"
#include "fmgr.h"
/* for F_BOOLEQ, etc. DANGER */
#include "catalog/pg_type.h"
/* for OID of int28 type */
#include "catalog/pg_type.h"
/* for OID of int28 type */
#include "lib/dllist.h"
#include "lib/dllist.h"
...
...
src/backend/utils/init/globals.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.1
6 1997/11/15 20:57:27
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.1
7 1997/11/24 05:09:13
momjian Exp $
*
*
* NOTES
* NOTES
* Globals used all over the place should be declared here and not
* Globals used all over the place should be declared here and not
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
#include <storage/backendid.h>
#include <storage/backendid.h>
#include "access/heapam.h"
#include "access/heapam.h"
#include "utils/tqual.h"
#include "storage/sinval.h"
#include "storage/sinval.h"
#include "storage/sinvaladt.h"
#include "storage/sinvaladt.h"
#include "storage/lmgr.h"
#include "storage/lmgr.h"
...
...
src/backend/utils/init/postinit.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.
19 1997/11/18 07:58:10 vadim
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.
20 1997/11/24 05:09:17 momjian
Exp $
*
*
* NOTES
* NOTES
* InitPostgres() is the function called from PostgresMain
* InitPostgres() is the function called from PostgresMain
...
@@ -48,7 +48,6 @@
...
@@ -48,7 +48,6 @@
#include "access/xact.h"
#include "access/xact.h"
#include "storage/bufmgr.h"
#include "storage/bufmgr.h"
#include "access/transam.h"
/* XXX dependency problem */
#include "access/transam.h"
/* XXX dependency problem */
#include "utils/tqual.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "storage/bufpage.h"
/* for page layout, for InitMyDatabaseInfo() */
#include "storage/bufpage.h"
/* for page layout, for InitMyDatabaseInfo() */
#include "storage/sinval.h"
#include "storage/sinval.h"
...
...
src/backend/utils/sort/psort.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.2
7 1997/10/25 01:10:52
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.2
8 1997/11/24 05:09:21
momjian Exp $
*
*
* NOTES
* NOTES
* Sorts the first relation into the second relation.
* Sorts the first relation into the second relation.
...
@@ -46,8 +46,6 @@
...
@@ -46,8 +46,6 @@
#include "access/htup.h"
#include "access/htup.h"
#include "access/relscan.h"
#include "access/relscan.h"
#include "access/skey.h"
#include "access/skey.h"
#include "utils/tqual.h"
/* for NowTimeQual */
#include "storage/buf.h"
#include "storage/buf.h"
#include "storage/bufmgr.h"
/* for BLCKSZ */
#include "storage/bufmgr.h"
/* for BLCKSZ */
#include "utils/portal.h"
/* for {Start,End}PortalAllocMode */
#include "utils/portal.h"
/* for {Start,End}PortalAllocMode */
...
...
src/backend/utils/time/tqual.c
View file @
f7f2e18f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.1
0 1997/11/20 23:23:20
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.1
1 1997/11/24 05:09:24
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include "access/transam.h"
#include "access/transam.h"
#include "utils/elog.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/tqual.h"
#include "utils/tqual.h"
extern
bool
PostgresIsInitialized
;
extern
bool
PostgresIsInitialized
;
...
...
src/include/access/relscan.h
View file @
f7f2e18f
...
@@ -6,16 +6,16 @@
...
@@ -6,16 +6,16 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: relscan.h,v 1.
9 1997/11/20 23:23:33
momjian Exp $
* $Id: relscan.h,v 1.
10 1997/11/24 05:09:39
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef RELSCAN_H
#ifndef RELSCAN_H
#define RELSCAN_H
#define RELSCAN_H
#include <utils/tqual.h>
#include <storage/buf.h>
#include <storage/buf.h>
#include <utils/rel.h>
#include <utils/rel.h>
#include <access/htup.h>
typedef
ItemPointerData
MarkData
;
typedef
ItemPointerData
MarkData
;
...
...
src/include/access/valid.h
View file @
f7f2e18f
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: valid.h,v 1.1
0 1997/11/20 23:23:35
momjian Exp $
* $Id: valid.h,v 1.1
1 1997/11/24 05:09:41
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -16,11 +16,11 @@
...
@@ -16,11 +16,11 @@
#include <fmgr.h>
#include <fmgr.h>
#include <access/heapam.h>
#include <access/heapam.h>
#include <access/valid.h>
#include <access/valid.h>
#include <utils/tqual.h>
#include <storage/bufmgr.h>
#include <storage/bufmgr.h>
#include <storage/bufpage.h>
#include <storage/bufpage.h>
#include <utils/rel.h>
#include <utils/rel.h>
#include <utils/builtins.h>
#include <utils/builtins.h>
#include <utils/tqual.h>
/* ----------------
/* ----------------
* extern decl's
* extern decl's
...
...
src/include/nodes/parsenodes.h
View file @
f7f2e18f
...
@@ -6,14 +6,13 @@
...
@@ -6,14 +6,13 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: parsenodes.h,v 1.3
4 1997/11/21 19:59:39
momjian Exp $
* $Id: parsenodes.h,v 1.3
5 1997/11/24 05:09:50
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#ifndef PARSENODES_H
#ifndef PARSENODES_H
#define PARSENODES_H
#define PARSENODES_H
#include <utils/tqual.h>
#include <nodes/primnodes.h>
#include <nodes/primnodes.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