Produce a clean compile of backend...

This commit is contained in:
Marc G. Fournier 1996-11-03 06:54:38 +00:00
parent 3cf53c1d8a
commit c9002ecb21
29 changed files with 73 additions and 75 deletions

View File

@ -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 @@
#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"

View File

@ -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 @@
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h"
#include "libpq/pqsignal.h" #include "libpq/pqsignal.h"
pqsigfunc pqsigfunc

View File

@ -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)

View File

@ -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 @@
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#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"

View File

@ -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 @@
#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"

View File

@ -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 @@
#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"

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.12 1996/10/31 10:20:56 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.13 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 @@
#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[])
*/ */
if (IsUnderPostmaster == false) { if (IsUnderPostmaster == false) {
puts("\nPOSTGRES backend interactive interface"); puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.12 $ $Date: 1996/10/31 10:20:56 $"); puts("$Revision: 1.13 $ $Date: 1996/11/03 06:52:33 $");
} }
/* ---------------- /* ----------------

View File

@ -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 @@
#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"

View File

@ -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 @@
#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"

View File

@ -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)

View File

@ -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() */

View File

@ -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)

View File

@ -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);

View File

@ -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"
/***************************************************************************** /*****************************************************************************

View File

@ -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 */

View File

@ -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 @@
#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 */

View File

@ -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 @@
#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 '('

View File

@ -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"

View File

@ -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)

View File

@ -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 @@
#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"

View File

@ -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 @@
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#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"

View File

@ -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 @@
*/ */
#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"

View File

@ -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

View File

@ -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"
/***************************************************************************** /*****************************************************************************

View File

@ -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 @@
# 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,

View File

@ -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"
/* /*

View File

@ -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 @@
#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"

View File

@ -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"

View File

@ -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 @@
#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 @@
#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"