Commit f7f2e18f authored by Bruce Momjian's avatar Bruce Momjian

Remove tqual.h includes not needed.

parent 1409819a
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.27 1997/10/25 01:08:45 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.28 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
......
...@@ -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>
......
...@@ -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"
......
...@@ -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"
......
...@@ -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.28 1997/11/20 23:20:33 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.29 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"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.32 1997/11/21 18:04:11 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.33 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>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.28 1997/11/21 19:59:28 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.29 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>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.15 1997/11/20 23:20:49 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.16 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>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.12 1997/11/20 23:20:50 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.13 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>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.32 1997/11/21 18:10:06 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.33 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"
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.24 1997/11/21 18:10:55 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.25 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"
......
...@@ -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 */
......
...@@ -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"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.18 1997/11/20 23:22:50 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.19 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"
......
...@@ -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);
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.11 1997/11/20 23:23:03 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.12 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 */
......
...@@ -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"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.17 1997/11/20 23:23:08 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.18 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"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.16 1997/11/15 20:57:27 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.17 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"
......
...@@ -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"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.27 1997/10/25 01:10:52 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.28 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 */
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.10 1997/11/20 23:23:20 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.11 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;
......
...@@ -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;
......
...@@ -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.10 1997/11/20 23:23:35 momjian Exp $ * $Id: valid.h,v 1.11 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
......
...@@ -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.34 1997/11/21 19:59:39 momjian Exp $ * $Id: parsenodes.h,v 1.35 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>
/***************************************************************************** /*****************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment