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
c9002ecb
Commit
c9002ecb
authored
Nov 03, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Produce a clean compile of backend...
parent
3cf53c1d
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
73 additions
and
75 deletions
+73
-75
src/backend/libpq/hba.c
src/backend/libpq/hba.c
+7
-6
src/backend/libpq/pqsignal.c
src/backend/libpq/pqsignal.c
+3
-1
src/backend/tcop/Makefile
src/backend/tcop/Makefile
+2
-4
src/backend/tcop/aclchk.c
src/backend/tcop/aclchk.c
+3
-2
src/backend/tcop/dest.c
src/backend/tcop/dest.c
+1
-2
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/tcop/pquery.c
src/backend/tcop/pquery.c
+2
-2
src/backend/tcop/utility.c
src/backend/tcop/utility.c
+1
-2
src/backend/tioga/Makefile
src/backend/tioga/Makefile
+2
-3
src/backend/tioga/tgRecipe.c
src/backend/tioga/tgRecipe.c
+2
-1
src/backend/utils/adt/Makefile
src/backend/utils/adt/Makefile
+2
-4
src/backend/utils/adt/acl.c
src/backend/utils/adt/acl.c
+2
-6
src/backend/utils/adt/bool.c
src/backend/utils/adt/bool.c
+4
-2
src/backend/utils/adt/dt.c
src/backend/utils/adt/dt.c
+2
-2
src/backend/utils/adt/filename.c
src/backend/utils/adt/filename.c
+3
-4
src/backend/utils/adt/geo-ops.c
src/backend/utils/adt/geo-ops.c
+3
-2
src/backend/utils/adt/selfuncs.c
src/backend/utils/adt/selfuncs.c
+3
-2
src/backend/utils/cache/Makefile
src/backend/utils/cache/Makefile
+2
-4
src/backend/utils/cache/fcache.c
src/backend/utils/cache/fcache.c
+2
-3
src/backend/utils/cache/syscache.c
src/backend/utils/cache/syscache.c
+2
-3
src/backend/utils/error/exc.c
src/backend/utils/error/exc.c
+4
-1
src/backend/utils/error/excabort.c
src/backend/utils/error/excabort.c
+4
-1
src/backend/utils/error/excid.c
src/backend/utils/error/excid.c
+4
-1
src/backend/utils/hash/dynahash.c
src/backend/utils/hash/dynahash.c
+1
-3
src/backend/utils/hash/hashfn.c
src/backend/utils/hash/hashfn.c
+3
-1
src/backend/utils/mmgr/portalmem.c
src/backend/utils/mmgr/portalmem.c
+2
-3
src/backend/utils/sort/lselect.c
src/backend/utils/sort/lselect.c
+2
-2
src/backend/utils/sort/psort.c
src/backend/utils/sort/psort.c
+2
-3
No files found.
src/backend/libpq/hba.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.
4 1996/10/31 10:16:08
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.
5 1996/11/03 06:52:13
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -20,13 +20,14 @@
...
@@ -20,13 +20,14 @@
#include <netinet/in.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <arpa/inet.h>
#if defined(sparc_solaris)
#if defined(sparc_solaris)
#include
<port/inet_aton.h>
#include
"port/inet_aton.h"
#endif
#endif
#include <miscadmin.h>
#include "postgres.h"
#include <libpq/libpq.h>
#include "miscadmin.h"
#include <libpq/pqcomm.h>
#include "libpq/libpq.h"
#include <libpq/hba.h>
#include "libpq/pqcomm.h"
#include "libpq/hba.h"
#define CONF_FILE "pg_hba.conf"
#define CONF_FILE "pg_hba.conf"
...
...
src/backend/libpq/pqsignal.c
View file @
c9002ecb
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.
1.1.1 1996/07/09 06:21:31
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.
2 1996/11/03 06:52:14
scrappy Exp $
*
*
* NOTES
* NOTES
* This shouldn't be in libpq, but the monitor and some other
* This shouldn't be in libpq, but the monitor and some other
...
@@ -16,6 +16,8 @@
...
@@ -16,6 +16,8 @@
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "libpq/pqsignal.h"
#include "libpq/pqsignal.h"
pqsigfunc
pqsigfunc
...
...
src/backend/tcop/Makefile
View file @
c9002ecb
...
@@ -4,16 +4,14 @@
...
@@ -4,16 +4,14 @@
# Makefile for tcop
# Makefile for tcop
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.
2 1996/10/31 05:55:23 momjian
Exp $
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.
3 1996/11/03 06:52:27 scrappy
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
SRCDIR
=
../..
SRCDIR
=
../..
include
../../Makefile.global
include
../../Makefile.global
INCLUDE_OPT
=
-I
..
\
INCLUDE_OPT
=
-I
../port/
$(PORTNAME)
\
-I
../port/
$(PORTNAME)
\
-I
../include
\
-I
../../include
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/tcop/aclchk.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.
2 1996/10/31 05:55:24 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.
3 1996/11/03 06:52:29 scrappy
Exp $
*
*
* NOTES
* NOTES
* See acl.h.
* See acl.h.
...
@@ -15,12 +15,13 @@
...
@@ -15,12 +15,13 @@
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include <string.h>
#include <string.h>
#include "postgres.h"
#include "utils/acl.h"
/* where declarations for this file goes */
#include "utils/acl.h"
/* where declarations for this file goes */
#include "access/heapam.h"
#include "access/heapam.h"
#include "access/htup.h"
#include "access/htup.h"
#include "access/tupmacs.h"
#include "access/tupmacs.h"
#include "utils/builtins.h"
#include "utils/builtins.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "catalog/indexing.h"
#include "catalog/indexing.h"
#include "catalog/catalog.h"
#include "catalog/catalog.h"
...
...
src/backend/tcop/dest.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.
1.1.1 1996/07/09 06:21:59
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.
2 1996/11/03 06:52:31
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
#include "libpq/libpq-be.h"
#include "libpq/libpq-be.h"
#include "access/printtup.h"
#include "access/printtup.h"
#include "utils/portal.h"
#include "utils/portal.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "executor/executor.h"
#include "executor/executor.h"
...
...
src/backend/tcop/fastpath.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.
1.1.1 1996/07/09 06:21:59
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.
2 1996/11/03 06:52:32
scrappy Exp $
*
*
* NOTES
* NOTES
* This cruft is the server side of PQfn.
* This cruft is the server side of PQfn.
...
@@ -63,7 +63,6 @@
...
@@ -63,7 +63,6 @@
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "fmgr.h"
#include "fmgr.h"
#include "utils/elog.h"
#include "utils/builtins.h"
/* for oideq */
#include "utils/builtins.h"
/* for oideq */
#include "tcop/fastpath.h"
#include "tcop/fastpath.h"
#include "libpq/libpq.h"
#include "libpq/libpq.h"
...
...
src/backend/tcop/postgres.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.1
2 1996/10/31 10:20:56
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.1
3 1996/11/03 06:52:33
scrappy Exp $
*
*
* NOTES
* NOTES
* this is the "main" module of the postgres backend and
* this is the "main" module of the postgres backend and
...
@@ -65,7 +65,6 @@
...
@@ -65,7 +65,6 @@
#include "storage/bufmgr.h"
#include "storage/bufmgr.h"
#include "fmgr.h"
#include "fmgr.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/rel.h"
#include "utils/rel.h"
...
@@ -1265,7 +1264,7 @@ PostgresMain(int argc, char *argv[])
...
@@ -1265,7 +1264,7 @@ PostgresMain(int argc, char *argv[])
*/
*/
if
(
IsUnderPostmaster
==
false
)
{
if
(
IsUnderPostmaster
==
false
)
{
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"$Revision: 1.1
2 $ $Date: 1996/10/31 10:20:56
$"
);
puts
(
"$Revision: 1.1
3 $ $Date: 1996/11/03 06:52:33
$"
);
}
}
/* ----------------
/* ----------------
...
...
src/backend/tcop/pquery.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.
2 1996/07/30 07:41:38
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.
3 1996/11/03 06:52:35
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -15,8 +15,8 @@
...
@@ -15,8 +15,8 @@
#include "tcop/tcopdebug.h"
#include "tcop/tcopdebug.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "nodes/nodes.h"
#include "utils/mcxt.h"
#include "utils/mcxt.h"
#include "miscadmin.h"
#include "miscadmin.h"
#include "utils/portal.h"
#include "utils/portal.h"
...
...
src/backend/tcop/utility.c
View file @
c9002ecb
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.
4 1996/11/02 02:03:13 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.
5 1996/11/03 06:52:36 scrappy
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
#include "nodes/parsenodes.h"
#include "nodes/parsenodes.h"
#include "parse.h"
#include "parse.h"
#include "utils/elog.h"
#include "utils/builtins.h"
#include "utils/builtins.h"
#include "utils/acl.h"
#include "utils/acl.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
...
...
src/backend/tioga/Makefile
View file @
c9002ecb
...
@@ -4,16 +4,15 @@
...
@@ -4,16 +4,15 @@
# Makefile for tioga
# Makefile for tioga
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/tioga/Attic/Makefile,v 1.
1 1996/10/27 09:53:00 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/tioga/Attic/Makefile,v 1.
2 1996/11/03 06:52:43 scrappy
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
SRCDIR
=
../..
SRCDIR
=
../..
include
../../Makefile.global
include
../../Makefile.global
INCLUDE_OPT
=
-I
..
\
INCLUDE_OPT
=
-I../port/$(PORTNAME)
\
-I../port/$(PORTNAME)
\
-I
../include
\
-I../../include
-I../../include
CFLAGS
+=
$(INCLUDE_OPT)
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/tioga/tgRecipe.c
View file @
c9002ecb
...
@@ -11,12 +11,13 @@
...
@@ -11,12 +11,13 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tioga/Attic/tgRecipe.c,v 1.
1.1.1 1996/07/09 06:22:00
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tioga/Attic/tgRecipe.c,v 1.
2 1996/11/03 06:52:45
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include <stdlib.h>
#include <stdlib.h>
#include "postgres.h"
#include "tioga/tgRecipe.h"
#include "tioga/tgRecipe.h"
#include "catalog/catalog.h"
/*for newoid() */
#include "catalog/catalog.h"
/*for newoid() */
...
...
src/backend/utils/adt/Makefile
View file @
c9002ecb
...
@@ -4,16 +4,14 @@
...
@@ -4,16 +4,14 @@
# Makefile for utils/adt
# Makefile for utils/adt
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.
1 1996/10/27 09:53:15 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.
2 1996/11/03 06:52:59 scrappy
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
SRCDIR
=
../../..
SRCDIR
=
../../..
include
../../../Makefile.global
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/adt/acl.c
View file @
c9002ecb
...
@@ -7,23 +7,19 @@
...
@@ -7,23 +7,19 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.
2 1996/08/27 07:32:25
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.
3 1996/11/03 06:53:01
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "config.h"
#include <ctype.h>
#include <ctype.h>
#include <string.h>
#include <string.h>
#include "postgres.h"
#include "postgres.h"
#include "c.h"
#include "utils/acl.h"
#include "utils/acl.h"
#include "access/htup.h"
#include "access/htup.h"
#include "catalog/pg_user.h"
#include "catalog/pg_user.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "miscadmin.h"
static
char
*
getid
(
char
*
s
,
char
*
n
);
static
char
*
getid
(
char
*
s
,
char
*
n
);
static
int32
aclitemeq
(
AclItem
*
a1
,
AclItem
*
a2
);
static
int32
aclitemeq
(
AclItem
*
a1
,
AclItem
*
a2
);
...
...
src/backend/utils/adt/bool.c
View file @
c9002ecb
...
@@ -7,12 +7,14 @@
...
@@ -7,12 +7,14 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.
1.1.1 1996/07/09 06:22
:03 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.
2 1996/11/03 06:53
:03 scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "utils/builtins.h"
/* where the declarations go */
#include "utils/builtins.h"
/* where the declarations go */
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
/*****************************************************************************
/*****************************************************************************
...
...
src/backend/utils/adt/dt.c
View file @
c9002ecb
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.
1.1.1 1996/07/09 06:22
:04 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.
2 1996/11/03 06:53
:04 scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "
c
.h"
#include "
postgres
.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/builtins.h"
/* where function declarations go */
#include "utils/builtins.h"
/* where function declarations go */
...
...
src/backend/utils/adt/filename.c
View file @
c9002ecb
...
@@ -7,13 +7,11 @@
...
@@ -7,13 +7,11 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/filename.c,v 1.
2 1996/08/27 07:32:32
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/filename.c,v 1.
3 1996/11/03 06:53:05
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "config.h"
#include <string.h>
#include <string.h>
#include <stdio.h>
#include <stdio.h>
#ifndef WIN32
#ifndef WIN32
...
@@ -21,7 +19,8 @@
...
@@ -21,7 +19,8 @@
#endif
/* WIN32 */
#endif
/* WIN32 */
#include <sys/param.h>
#include <sys/param.h>
#include "utils/elog.h"
#include "postgres.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "utils/builtins.h"
/* where function declarations go */
#include "utils/builtins.h"
/* where function declarations go */
...
...
src/backend/utils/adt/geo-ops.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/geo-ops.c,v 1.
2 1996/07/22 21:56:01
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/geo-ops.c,v 1.
3 1996/11/03 06:53:06
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -16,8 +16,9 @@
...
@@ -16,8 +16,9 @@
#include <stdio.h>
/* for sprintf proto, etc. */
#include <stdio.h>
/* for sprintf proto, etc. */
#include <string.h>
#include <string.h>
#include "postgres.h"
#include "utils/geo-decls.h"
#include "utils/geo-decls.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#define LDELIM '('
#define LDELIM '('
...
...
src/backend/utils/adt/selfuncs.c
View file @
c9002ecb
...
@@ -12,19 +12,20 @@
...
@@ -12,19 +12,20 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.
3 1996/08/26 06:32:06
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.
4 1996/11/03 06:53:08
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
#include "postgres.h"
#include "access/heapam.h"
#include "access/heapam.h"
#include "utils/tqual.h"
/* for NowTimeQual */
#include "utils/tqual.h"
/* for NowTimeQual */
#include "fmgr.h"
#include "fmgr.h"
#include "utils/builtins.h"
/* for textout() prototype
#include "utils/builtins.h"
/* for textout() prototype
and where the declarations go */
and where the declarations go */
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "catalog/catname.h"
#include "catalog/catname.h"
...
...
src/backend/utils/cache/Makefile
View file @
c9002ecb
...
@@ -4,16 +4,14 @@
...
@@ -4,16 +4,14 @@
# Makefile for utils/cache
# Makefile for utils/cache
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/cache/Makefile,v 1.
1 1996/10/27 09:53:26 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/cache/Makefile,v 1.
2 1996/11/03 06:53:14 scrappy
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
SRCDIR
=
../../..
SRCDIR
=
../../..
include
../../../Makefile.global
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/cache/fcache.c
View file @
c9002ecb
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/fcache.c,v 1.
1.1.1 1996/07/09 06:22:06
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/fcache.c,v 1.
2 1996/11/03 06:53:17
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "
c
.h"
#include "
postgres
.h"
#include "access/htup.h"
#include "access/htup.h"
#include "utils/catcache.h"
#include "utils/catcache.h"
#include "utils/syscache.h"
#include "utils/syscache.h"
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include "parser/parsetree.h"
/* for getrelname() */
#include "parser/parsetree.h"
/* for getrelname() */
#include "utils/builtins.h"
#include "utils/builtins.h"
#include "utils/fcache.h"
#include "utils/fcache.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "nodes/primnodes.h"
#include "nodes/primnodes.h"
#include "nodes/execnodes.h"
#include "nodes/execnodes.h"
...
...
src/backend/utils/cache/syscache.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.
2 1996/08/15 07:42:52
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.
3 1996/11/03 06:53:19
scrappy Exp $
*
*
* NOTES
* NOTES
* These routines allow the parser/planner/executor to perform
* These routines allow the parser/planner/executor to perform
...
@@ -17,13 +17,12 @@
...
@@ -17,13 +17,12 @@
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "
c
.h"
#include "
postgres
.h"
#include "access/heapam.h"
#include "access/heapam.h"
#include "access/htup.h"
#include "access/htup.h"
#include "catalog/catname.h"
#include "catalog/catname.h"
#include "utils/catcache.h"
#include "utils/catcache.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/palloc.h"
#include "nodes/pg_list.h"
#include "nodes/pg_list.h"
...
...
src/backend/utils/error/exc.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.
4 1996/10/31 10:23:28
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.
5 1996/11/03 06:53:26
scrappy Exp $
*
*
* NOTE
* NOTE
* XXX this code needs improvement--check for state violations and
* XXX this code needs improvement--check for state violations and
...
@@ -17,6 +17,9 @@
...
@@ -17,6 +17,9 @@
*/
*/
#include <stdio.h>
/* XXX use own I/O routines */
#include <stdio.h>
/* XXX use own I/O routines */
#include <errno.h>
#include <errno.h>
#include "postgres.h"
#include "utils/exc.h"
#include "utils/exc.h"
#include "storage/ipc.h"
#include "storage/ipc.h"
...
...
src/backend/utils/error/excabort.c
View file @
c9002ecb
...
@@ -7,10 +7,13 @@
...
@@ -7,10 +7,13 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.
1.1.1 1996/07/09 06:22:07
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.
2 1996/11/03 06:53:32
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "utils/exc.h"
/* where function declarations go */
#include "utils/exc.h"
/* where function declarations go */
void
void
...
...
src/backend/utils/error/excid.c
View file @
c9002ecb
...
@@ -7,10 +7,13 @@
...
@@ -7,10 +7,13 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.
1.1.1 1996/07/09 06:22:07
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.
2 1996/11/03 06:53:35
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include "postgres.h"
#include "utils/excid.h"
#include "utils/excid.h"
/*****************************************************************************
/*****************************************************************************
...
...
src/backend/utils/hash/dynahash.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/hash/dynahash.c,v 1.
1.1.1 1996/07/09 06:22:08
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/hash/dynahash.c,v 1.
2 1996/11/03 06:54:13
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -45,11 +45,9 @@
...
@@ -45,11 +45,9 @@
# include "postgres.h"
# include "postgres.h"
# include "utils/hsearch.h"
# include "utils/hsearch.h"
#ifndef FRONTEND
#ifndef FRONTEND
# include "nodes/memnodes.h"
# include "utils/mcxt.h"
# include "utils/mcxt.h"
#endif
/* !FRONTEND */
#endif
/* !FRONTEND */
# include "utils/palloc.h"
# include "utils/palloc.h"
# include "utils/elog.h"
/*
/*
* Fast arithmetic, relying on powers of 2,
* Fast arithmetic, relying on powers of 2,
...
...
src/backend/utils/hash/hashfn.c
View file @
c9002ecb
...
@@ -7,11 +7,13 @@
...
@@ -7,11 +7,13 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/hash/hashfn.c,v 1.
1.1.1 1996/07/09 06:22:08
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/hash/hashfn.c,v 1.
2 1996/11/03 06:54:16
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include <string.h>
#include <string.h>
#include "postgres.h"
#include "utils/hsearch.h"
#include "utils/hsearch.h"
/*
/*
...
...
src/backend/utils/mmgr/portalmem.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/portalmem.c,v 1.
1.1.1 1996/07/09 06:22:09
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/portalmem.c,v 1.
2 1996/11/03 06:54:25
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -76,12 +76,11 @@
...
@@ -76,12 +76,11 @@
#include <stdio.h>
/* for sprintf() */
#include <stdio.h>
/* for sprintf() */
#include <string.h>
/* for strlen, strncpy */
#include <string.h>
/* for strlen, strncpy */
#include "
c
.h"
#include "
postgres
.h"
#include "lib/hasht.h"
#include "lib/hasht.h"
#include "utils/module.h"
#include "utils/module.h"
#include "utils/excid.h"
/* for Unimplemented */
#include "utils/excid.h"
/* for Unimplemented */
#include "utils/elog.h"
#include "utils/mcxt.h"
#include "utils/mcxt.h"
#include "utils/hsearch.h"
#include "utils/hsearch.h"
...
...
src/backend/utils/sort/lselect.c
View file @
c9002ecb
...
@@ -8,14 +8,14 @@
...
@@ -8,14 +8,14 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/lselect.c,v 1.
1.1.1 1996/07/09 06:22:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/lselect.c,v 1.
2 1996/11/03 06:54:35
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include <string.h>
#include <string.h>
#include <stdio.h>
#include <stdio.h>
#include "
c
.h"
#include "
postgres
.h"
#include "storage/buf.h"
#include "storage/buf.h"
#include "access/skey.h"
#include "access/skey.h"
...
...
src/backend/utils/sort/psort.c
View file @
c9002ecb
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.
1.1.1 1996/07/09 06:22:10
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.
2 1996/11/03 06:54:38
scrappy Exp $
*
*
* NOTES
* NOTES
* Sorts the first relation into the second relation. The sort may
* Sorts the first relation into the second relation. The sort may
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#include <stdio.h>
#include <stdio.h>
#include <math.h>
#include <math.h>
#include "
c
.h"
#include "
postgres
.h"
#include "executor/execdebug.h"
#include "executor/execdebug.h"
#include "access/heapam.h"
#include "access/heapam.h"
...
@@ -34,7 +34,6 @@
...
@@ -34,7 +34,6 @@
#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 */
#include "utils/elog.h"
#include "utils/rel.h"
#include "utils/rel.h"
#include "utils/psort.h"
#include "utils/psort.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