diff options
Diffstat (limited to 'src/include')
101 files changed, 276 insertions, 276 deletions
diff --git a/src/include/access/genam.h b/src/include/access/genam.h index b2e55df620e..7955fd6bfe8 100644 --- a/src/include/access/genam.h +++ b/src/include/access/genam.h @@ -6,17 +6,17 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: genam.h,v 1.18 1999/02/13 23:20:50 momjian Exp $ + * $Id: genam.h,v 1.19 1999/07/15 23:03:33 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef GENAM_H #define GENAM_H -#include <access/sdir.h> -#include <access/funcindex.h> -#include <access/relscan.h> -#include <access/itup.h> +#include "access/sdir.h" +#include "access/funcindex.h" +#include "access/relscan.h" +#include "access/itup.h" /* ---------------- * generalized index_ interface routines diff --git a/src/include/access/gist.h b/src/include/access/gist.h index b1c31b2c66b..dd0aa92e40d 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -12,10 +12,10 @@ #ifndef GIST_H #define GIST_H -#include <access/funcindex.h> -#include <access/itup.h> -#include <access/relscan.h> -#include <access/sdir.h> +#include "access/funcindex.h" +#include "access/itup.h" +#include "access/relscan.h" +#include "access/sdir.h" /* ** You can have as many strategies as you please in GiSTs, as diff --git a/src/include/access/gistscan.h b/src/include/access/gistscan.h index d86036e9e18..ef55ab39518 100644 --- a/src/include/access/gistscan.h +++ b/src/include/access/gistscan.h @@ -11,7 +11,7 @@ */ #ifndef GISTSCAN_H -#include <access/relscan.h> +#include "access/relscan.h" extern IndexScanDesc gistbeginscan(Relation r, bool fromEnd, uint16 nkeys, ScanKey key); diff --git a/src/include/access/giststrat.h b/src/include/access/giststrat.h index 77fc90b1625..c2fc30edf42 100644 --- a/src/include/access/giststrat.h +++ b/src/include/access/giststrat.h @@ -12,7 +12,7 @@ #ifndef GISTSTRAT_H #define GISTSTRAT_H -#include <utils/rel.h> +#include "utils/rel.h" extern StrategyNumber RelationGetGISTStrategy(Relation r, AttrNumber attnum, RegProcedure proc); diff --git a/src/include/access/hash.h b/src/include/access/hash.h index 1157bf355a9..08739e70ca6 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hash.h,v 1.25 1999/07/15 15:20:53 momjian Exp $ + * $Id: hash.h,v 1.26 1999/07/15 23:03:34 momjian Exp $ * * NOTES * modeled after Margo Seltzer's hash implementation for unix. @@ -16,11 +16,11 @@ #ifndef HASH_H #define HASH_H -#include <access/sdir.h> -#include <access/funcindex.h> -#include <access/relscan.h> -#include <access/itup.h> -#include <utils/int8.h> +#include "access/sdir.h" +#include "access/funcindex.h" +#include "access/relscan.h" +#include "access/itup.h" +#include "utils/int8.h" /* * An overflow page is a spare page allocated for storing data whose diff --git a/src/include/access/hio.h b/src/include/access/hio.h index d94d959b7a1..edfcc1319e5 100644 --- a/src/include/access/hio.h +++ b/src/include/access/hio.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hio.h,v 1.12 1999/07/15 15:20:54 momjian Exp $ + * $Id: hio.h,v 1.13 1999/07/15 23:03:34 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef HIO_H #define HIO_H -#include <access/htup.h> +#include "access/htup.h" extern void RelationPutHeapTuple(Relation relation, Buffer buffer, HeapTuple tuple); diff --git a/src/include/access/htup.h b/src/include/access/htup.h index 507a17907fc..cae145ead49 100644 --- a/src/include/access/htup.h +++ b/src/include/access/htup.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: htup.h,v 1.23 1999/07/15 15:20:54 momjian Exp $ + * $Id: htup.h,v 1.24 1999/07/15 23:03:34 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef HTUP_H #define HTUP_H -#include <storage/bufpage.h> +#include "storage/bufpage.h" #define MinHeapTupleBitmapSize 32 /* 8 * 4 */ diff --git a/src/include/access/ibit.h b/src/include/access/ibit.h index acbe22b6a1d..31ccc99191b 100644 --- a/src/include/access/ibit.h +++ b/src/include/access/ibit.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: ibit.h,v 1.9 1999/02/13 23:20:54 momjian Exp $ + * $Id: ibit.h,v 1.10 1999/07/15 23:03:34 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef IBIT_H #define IBIT_H -#include <utils/memutils.h> +#include "utils/memutils.h" typedef struct IndexAttributeBitMapData { diff --git a/src/include/access/iqual.h b/src/include/access/iqual.h index be765ab4ec7..15e576e65a7 100644 --- a/src/include/access/iqual.h +++ b/src/include/access/iqual.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: iqual.h,v 1.11 1999/02/13 23:20:55 momjian Exp $ + * $Id: iqual.h,v 1.12 1999/07/15 23:03:34 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef IQUAL_H #define IQUAL_H -#include <access/skey.h> -#include <access/itup.h> +#include "access/skey.h" +#include "access/itup.h" /* ---------------- diff --git a/src/include/access/istrat.h b/src/include/access/istrat.h index 90ed45926af..32d75ef0903 100644 --- a/src/include/access/istrat.h +++ b/src/include/access/istrat.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: istrat.h,v 1.14 1999/07/15 15:20:54 momjian Exp $ + * $Id: istrat.h,v 1.15 1999/07/15 23:03:35 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef ISTRAT_H #define ISTRAT_H -#include <utils/rel.h> +#include "utils/rel.h" /* * StrategyNumberIsValid diff --git a/src/include/access/itup.h b/src/include/access/itup.h index f89211029c0..d324e0c7add 100644 --- a/src/include/access/itup.h +++ b/src/include/access/itup.h @@ -6,17 +6,17 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: itup.h,v 1.18 1999/07/15 15:20:54 momjian Exp $ + * $Id: itup.h,v 1.19 1999/07/15 23:03:35 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef ITUP_H #define ITUP_H -#include <access/ibit.h> -#include <access/tupmacs.h> -#include <access/tupdesc.h> -#include <storage/itemptr.h> +#include "access/ibit.h" +#include "access/tupmacs.h" +#include "access/tupdesc.h" +#include "storage/itemptr.h" #define MaxIndexAttributeNumber 7 diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h index 9618e5fb725..f5d50533676 100644 --- a/src/include/access/nbtree.h +++ b/src/include/access/nbtree.h @@ -6,17 +6,17 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nbtree.h,v 1.28 1999/07/15 15:20:55 momjian Exp $ + * $Id: nbtree.h,v 1.29 1999/07/15 23:03:35 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef NBTREE_H #define NBTREE_H -#include <access/sdir.h> -#include <access/relscan.h> -#include <access/funcindex.h> -#include <access/itup.h> +#include "access/sdir.h" +#include "access/relscan.h" +#include "access/funcindex.h" +#include "access/itup.h" /* * BTPageOpaqueData -- At the end of every page, we store a pointer diff --git a/src/include/access/printtup.h b/src/include/access/printtup.h index 0fce96e73a2..f90f3103b0c 100644 --- a/src/include/access/printtup.h +++ b/src/include/access/printtup.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: printtup.h,v 1.10 1999/05/25 22:42:32 momjian Exp $ + * $Id: printtup.h,v 1.11 1999/07/15 23:03:35 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PRINTTUP_H #define PRINTTUP_H -#include <tcop/dest.h> +#include "tcop/dest.h" extern DestReceiver *printtup_create_DR(void); extern void showatts(char *name, TupleDesc attinfo); diff --git a/src/include/access/relscan.h b/src/include/access/relscan.h index fe8b03f40c1..08e7754df59 100644 --- a/src/include/access/relscan.h +++ b/src/include/access/relscan.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: relscan.h,v 1.16 1999/07/15 15:20:55 momjian Exp $ + * $Id: relscan.h,v 1.17 1999/07/15 23:03:36 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef RELSCAN_H #define RELSCAN_H -#include <utils/tqual.h> +#include "utils/tqual.h" typedef ItemPointerData MarkData; diff --git a/src/include/access/rtree.h b/src/include/access/rtree.h index d5d105ec3f6..ff13d3baba0 100644 --- a/src/include/access/rtree.h +++ b/src/include/access/rtree.h @@ -6,17 +6,17 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: rtree.h,v 1.15 1999/07/15 15:20:55 momjian Exp $ + * $Id: rtree.h,v 1.16 1999/07/15 23:03:36 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef RTREE_H #define RTREE_H -#include <access/funcindex.h> -#include <access/itup.h> -#include <access/relscan.h> -#include <access/sdir.h> +#include "access/funcindex.h" +#include "access/itup.h" +#include "access/relscan.h" +#include "access/sdir.h" /* see rtstrat.c for what all this is about */ #define RTNStrategies 8 diff --git a/src/include/access/rtscan.h b/src/include/access/rtscan.h index 88932322d33..8ad9943ac06 100644 --- a/src/include/access/rtscan.h +++ b/src/include/access/rtscan.h @@ -6,16 +6,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: rtscan.h,v 1.6 1999/02/13 23:20:58 momjian Exp $ + * $Id: rtscan.h,v 1.7 1999/07/15 23:03:37 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef RTSCAN_H #define RTSCAN_H -#include <utils/rel.h> -#include <storage/block.h> -#include <storage/off.h> +#include "utils/rel.h" +#include "storage/block.h" +#include "storage/off.h" void rtadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum); diff --git a/src/include/access/rtstrat.h b/src/include/access/rtstrat.h index fb3e090b6c6..91d5d3d365c 100644 --- a/src/include/access/rtstrat.h +++ b/src/include/access/rtstrat.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: rtstrat.h,v 1.10 1999/07/15 15:20:55 momjian Exp $ + * $Id: rtstrat.h,v 1.11 1999/07/15 23:03:37 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef RTSTRAT_H #define RTSTRAT_H -#include <utils/rel.h> +#include "utils/rel.h" extern RegProcedure RTMapOperator(Relation r, AttrNumber attnum, RegProcedure proc); diff --git a/src/include/access/skey.h b/src/include/access/skey.h index 57cc7e0d444..8b9d1c5174f 100644 --- a/src/include/access/skey.h +++ b/src/include/access/skey.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: skey.h,v 1.11 1999/02/13 23:20:58 momjian Exp $ + * $Id: skey.h,v 1.12 1999/07/15 23:03:37 momjian Exp $ * * * Note: @@ -16,8 +16,8 @@ #ifndef SKEY_H #define SKEY_H -#include <access/attnum.h> -#include <fmgr.h> +#include "access/attnum.h" +#include "fmgr.h" typedef struct ScanKeyData { diff --git a/src/include/access/strat.h b/src/include/access/strat.h index b1e58f08dbe..92b58939b54 100644 --- a/src/include/access/strat.h +++ b/src/include/access/strat.h @@ -7,14 +7,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: strat.h,v 1.15 1999/05/25 22:42:34 momjian Exp $ + * $Id: strat.h,v 1.16 1999/07/15 23:03:38 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef STRAT_H #define STRAT_H -#include <access/skey.h> +#include "access/skey.h" typedef uint16 StrategyNumber; diff --git a/src/include/access/transam.h b/src/include/access/transam.h index 2551278f129..46d9f1b8036 100644 --- a/src/include/access/transam.h +++ b/src/include/access/transam.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: transam.h,v 1.22 1999/06/10 14:17:12 vadim Exp $ + * $Id: transam.h,v 1.23 1999/07/15 23:03:38 momjian Exp $ * * NOTES * Transaction System Version 101 now support proper oid @@ -17,7 +17,7 @@ #ifndef TRANSAM_H #define TRANSAM_H -#include <storage/bufmgr.h> +#include "storage/bufmgr.h" /* ---------------- * transaction system version id diff --git a/src/include/access/tupdesc.h b/src/include/access/tupdesc.h index f338723d5f1..98e6492440b 100644 --- a/src/include/access/tupdesc.h +++ b/src/include/access/tupdesc.h @@ -6,16 +6,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tupdesc.h,v 1.22 1999/05/25 22:42:36 momjian Exp $ + * $Id: tupdesc.h,v 1.23 1999/07/15 23:03:38 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef TUPDESC_H #define TUPDESC_H -#include <nodes/pg_list.h> -#include <access/attnum.h> -#include <catalog/pg_attribute.h> +#include "nodes/pg_list.h" +#include "access/attnum.h" +#include "catalog/pg_attribute.h" typedef struct attrDefault diff --git a/src/include/access/xact.h b/src/include/access/xact.h index 9f155200e25..44c9d4b7a6e 100644 --- a/src/include/access/xact.h +++ b/src/include/access/xact.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: xact.h,v 1.21 1999/07/15 15:20:56 momjian Exp $ + * $Id: xact.h,v 1.22 1999/07/15 23:03:38 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef XACT_H #define XACT_H -#include <utils/nabstime.h> -#include <access/transam.h> +#include "utils/nabstime.h" +#include "access/transam.h" /* ---------------- * transaction state structure diff --git a/src/include/bootstrap/bootstrap.h b/src/include/bootstrap/bootstrap.h index 2e4cb77969b..fc0758152d3 100644 --- a/src/include/bootstrap/bootstrap.h +++ b/src/include/bootstrap/bootstrap.h @@ -6,16 +6,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: bootstrap.h,v 1.14 1999/02/13 23:21:00 momjian Exp $ + * $Id: bootstrap.h,v 1.15 1999/07/15 23:03:40 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef BOOTSTRAP_H #define BOOTSTRAP_H -#include <access/funcindex.h> -#include <access/itup.h> -#include <utils/rel.h> +#include "access/funcindex.h" +#include "access/itup.h" +#include "utils/rel.h" #define MAXATTR 40 /* max. number of attributes in a relation */ diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h index 1ef299580f1..bc6a8ef6436 100644 --- a/src/include/catalog/catalog.h +++ b/src/include/catalog/catalog.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: catalog.h,v 1.7 1999/02/13 23:21:01 momjian Exp $ + * $Id: catalog.h,v 1.8 1999/07/15 23:03:41 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef CATALOG_H #define CATALOG_H -#include <access/tupdesc.h> +#include "access/tupdesc.h" extern char *relpath(char *relname); extern bool IsSystemRelationName(char *relname); diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h index f10340a2a4f..b8e89d8c395 100644 --- a/src/include/catalog/heap.h +++ b/src/include/catalog/heap.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: heap.h,v 1.19 1999/05/25 16:13:39 momjian Exp $ + * $Id: heap.h,v 1.20 1999/07/15 23:03:41 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef HEAP_H #define HEAP_H -#include <utils/rel.h> +#include "utils/rel.h" extern Oid RelnameFindRelid(char *relname); extern Relation heap_create(char *relname, TupleDesc att, diff --git a/src/include/catalog/index.h b/src/include/catalog/index.h index a43ffae1ddc..b26e4acc711 100644 --- a/src/include/catalog/index.h +++ b/src/include/catalog/index.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: index.h,v 1.17 1999/07/15 15:20:58 momjian Exp $ + * $Id: index.h,v 1.18 1999/07/15 23:03:42 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef INDEX_H #define INDEX_H -#include <nodes/execnodes.h> -#include <access/itup.h> +#include "nodes/execnodes.h" +#include "access/itup.h" extern Form_pg_am AccessMethodObjectIdGetForm(Oid accessMethodObjectId); diff --git a/src/include/catalog/indexing.h b/src/include/catalog/indexing.h index 2ff93f65744..73df64aaca6 100644 --- a/src/include/catalog/indexing.h +++ b/src/include/catalog/indexing.h @@ -7,14 +7,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: indexing.h,v 1.20 1999/07/15 15:20:59 momjian Exp $ + * $Id: indexing.h,v 1.21 1999/07/15 23:03:42 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef INDEXING_H #define INDEXING_H -#include <access/htup.h> +#include "access/htup.h" /* * Some definitions for indices on pg_attribute diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 292f8fac389..a507f7e2d5a 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_proc.h,v 1.99 1999/05/25 16:13:47 momjian Exp $ + * $Id: pg_proc.h,v 1.100 1999/07/15 23:03:43 momjian Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -22,7 +22,7 @@ #ifndef PG_PROC_H #define PG_PROC_H -#include <tcop/dest.h> +#include "tcop/dest.h" /* ---------------- * postgres.h contains the system type definintions and the diff --git a/src/include/commands/command.h b/src/include/commands/command.h index 207ee4da429..75aa526ca17 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: command.h,v 1.14 1999/05/25 22:42:41 momjian Exp $ + * $Id: command.h,v 1.15 1999/07/15 23:03:44 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef COMMAND_H #define COMMAND_H -#include <utils/portal.h> +#include "utils/portal.h" extern MemoryContext PortalExecutorHeapMemory; diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index 5932ab43a22..63e1559f44e 100644 --- a/src/include/commands/defrem.h +++ b/src/include/commands/defrem.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: defrem.h,v 1.15 1999/02/13 23:21:18 momjian Exp $ + * $Id: defrem.h,v 1.16 1999/07/15 23:03:44 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef DEFREM_H #define DEFREM_H -#include <tcop/dest.h> -#include <nodes/parsenodes.h> +#include "tcop/dest.h" +#include "nodes/parsenodes.h" /* * prototypes in defind.c diff --git a/src/include/commands/proclang.h b/src/include/commands/proclang.h index f39a6498fb0..42276055e6c 100644 --- a/src/include/commands/proclang.h +++ b/src/include/commands/proclang.h @@ -9,7 +9,7 @@ #ifndef PROCLANG_H #define PROCLANG_H -#include <nodes/parsenodes.h> +#include "nodes/parsenodes.h" extern void CreateProceduralLanguage(CreatePLangStmt *stmt); extern void DropProceduralLanguage(DropPLangStmt *stmt); diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h index cd67bd3f32a..b88c7b3ecc5 100644 --- a/src/include/executor/execdebug.h +++ b/src/include/executor/execdebug.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdebug.h,v 1.10 1999/07/15 15:21:06 momjian Exp $ + * $Id: execdebug.h,v 1.11 1999/07/15 23:03:46 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef EXECDEBUG_H #define EXECDEBUG_H -#include <nodes/print.h> +#include "nodes/print.h" /* ---------------------------------------------------------------- * debugging defines. diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h index 0dba8ccabd1..19823ac0e25 100644 --- a/src/include/executor/execdesc.h +++ b/src/include/executor/execdesc.h @@ -7,16 +7,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdesc.h,v 1.10 1999/02/13 23:21:23 momjian Exp $ + * $Id: execdesc.h,v 1.11 1999/07/15 23:03:47 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef EXECDESC_H #define EXECDESC_H -#include <tcop/dest.h> -#include <nodes/plannodes.h> -#include <nodes/parsenodes.h> +#include "tcop/dest.h" +#include "nodes/plannodes.h" +#include "nodes/parsenodes.h" /* ---------------- * query descriptor: diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index e979441a15b..20ce01a2501 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.35 1999/07/15 15:21:06 momjian Exp $ + * $Id: executor.h,v 1.36 1999/07/15 23:03:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -14,7 +14,7 @@ #define EXECUTOR_H #include <stdio.h> -#include <executor/execdesc.h> +#include "executor/execdesc.h" /* ---------------- * TupIsNull diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h index ad6390fa203..2a1d8a4b3aa 100644 --- a/src/include/executor/tuptable.h +++ b/src/include/executor/tuptable.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tuptable.h,v 1.13 1999/07/15 15:21:14 momjian Exp $ + * $Id: tuptable.h,v 1.14 1999/07/15 23:03:48 momjian Exp $ * * NOTES * The tuple table interface is getting pretty ugly. @@ -17,7 +17,7 @@ #ifndef TUPTABLE_H #define TUPTABLE_H -#include <access/htup.h> +#include "access/htup.h" /* ---------------- * The executor tuple table is managed and manipulated by special diff --git a/src/include/lib/hasht.h b/src/include/lib/hasht.h index 3f56bf640ca..bffa83e7a68 100644 --- a/src/include/lib/hasht.h +++ b/src/include/lib/hasht.h @@ -7,14 +7,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hasht.h,v 1.7 1999/02/13 23:21:31 momjian Exp $ + * $Id: hasht.h,v 1.8 1999/07/15 23:03:49 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef HASHT_H #define HASHT_H -#include <utils/hsearch.h> +#include "utils/hsearch.h" typedef void (*HashtFunc) (); diff --git a/src/include/libpq/crypt.h b/src/include/libpq/crypt.h index d6023332be6..7827b464081 100644 --- a/src/include/libpq/crypt.h +++ b/src/include/libpq/crypt.h @@ -9,7 +9,7 @@ #ifndef PG_CRYPT_H #define PG_CRYPT_H -#include <libpq/libpq-be.h> +#include "libpq/libpq-be.h" #define CRYPT_PWD_FILE "pg_pwd" #define CRYPT_PWD_FILE_SEPCHAR "'\\t'" diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 1b37c064a4f..31a2db54222 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -8,7 +8,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.h,v 1.36 1999/05/25 22:42:51 momjian Exp $ + * $Id: pqcomm.h,v 1.37 1999/07/15 23:03:50 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,7 @@ #include <stdio.h> #include <sys/types.h> #ifdef WIN32 -#include <winsock.h> +#include "winsock.h" #else #include <sys/socket.h> #include <sys/un.h> diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index ca324c94b12..ca2e427e019 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -6,20 +6,20 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execnodes.h,v 1.31 1999/07/15 15:21:16 momjian Exp $ + * $Id: execnodes.h,v 1.32 1999/07/15 23:03:52 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef EXECNODES_H #define EXECNODES_H -#include <nodes/primnodes.h> -#include <executor/hashjoin.h> -#include <access/relscan.h> -#include <access/sdir.h> -#include <nodes/params.h> -#include <executor/tuptable.h> -#include <access/funcindex.h> +#include "nodes/primnodes.h" +#include "executor/hashjoin.h" +#include "access/relscan.h" +#include "access/sdir.h" +#include "nodes/params.h" +#include "executor/tuptable.h" +#include "access/funcindex.h" /* ---------------- * IndexInfo information diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h index 7ea2e7e1420..6a387fd5c5c 100644 --- a/src/include/nodes/makefuncs.h +++ b/src/include/nodes/makefuncs.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: makefuncs.h,v 1.19 1999/07/15 15:21:16 momjian Exp $ + * $Id: makefuncs.h,v 1.20 1999/07/15 23:03:52 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef MAKEFUNC_H #define MAKEFUNC_H -#include <nodes/parsenodes.h> +#include "nodes/parsenodes.h" extern Oper *makeOper(Oid opno, Oid opid, diff --git a/src/include/nodes/memnodes.h b/src/include/nodes/memnodes.h index 76f99204c20..39130ef0edf 100644 --- a/src/include/nodes/memnodes.h +++ b/src/include/nodes/memnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: memnodes.h,v 1.13 1999/05/25 22:42:55 momjian Exp $ + * $Id: memnodes.h,v 1.14 1999/07/15 23:03:53 momjian Exp $ * * XXX the typedefs in this file are different from the other ???nodes.h; * they are pointers to structures instead of the structures themselves. @@ -18,9 +18,9 @@ #ifndef MEMNODES_H #define MEMNODES_H -#include <lib/fstack.h> -#include <utils/memutils.h> -#include <nodes/nodes.h> +#include "lib/fstack.h" +#include "utils/memutils.h" +#include "nodes/nodes.h" /* * MemoryContext diff --git a/src/include/nodes/nodeFuncs.h b/src/include/nodes/nodeFuncs.h index 528924ad41d..ccd1d3da094 100644 --- a/src/include/nodes/nodeFuncs.h +++ b/src/include/nodes/nodeFuncs.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeFuncs.h,v 1.9 1999/07/15 15:21:17 momjian Exp $ + * $Id: nodeFuncs.h,v 1.10 1999/07/15 23:03:53 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef NODEFUNCS_H #define NODEFUNCS_H -#include <nodes/primnodes.h> +#include "nodes/primnodes.h" extern bool single_node(Node *node); extern bool var_is_outer(Var *var); diff --git a/src/include/nodes/params.h b/src/include/nodes/params.h index 8d6a9a2eb65..b52314c4633 100644 --- a/src/include/nodes/params.h +++ b/src/include/nodes/params.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: params.h,v 1.10 1999/02/13 23:21:38 momjian Exp $ + * $Id: params.h,v 1.11 1999/07/15 23:03:54 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARAMS_H #define PARAMS_H -#include <access/attnum.h> +#include "access/attnum.h" /* ---------------------------------------------------------------- * diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index d804257ba6e..ef9f51cb7b0 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.75 1999/07/13 21:17:38 momjian Exp $ + * $Id: parsenodes.h,v 1.76 1999/07/15 23:03:54 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSENODES_H #define PARSENODES_H -#include <nodes/primnodes.h> +#include "nodes/primnodes.h" /***************************************************************************** * Query Tree diff --git a/src/include/nodes/pg_list.h b/src/include/nodes/pg_list.h index de481f4e464..3e20012b087 100644 --- a/src/include/nodes/pg_list.h +++ b/src/include/nodes/pg_list.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_list.h,v 1.11 1999/02/22 05:26:47 momjian Exp $ + * $Id: pg_list.h,v 1.12 1999/07/15 23:03:55 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PG_LIST_H #define PG_LIST_H -#include <nodes/nodes.h> +#include "nodes/nodes.h" /* ---------------------------------------------------------------- * node definitions diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 5c94d02932b..3d319a66ff7 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: plannodes.h,v 1.27 1999/05/25 22:42:58 momjian Exp $ + * $Id: plannodes.h,v 1.28 1999/07/15 23:03:55 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PLANNODES_H #define PLANNODES_H -#include <nodes/execnodes.h> +#include "nodes/execnodes.h" /* ---------------------------------------------------------------- * Executor State types are used in the plannode structures diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index 3b0cadfcdcd..5f3fbb36c2a 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -6,16 +6,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: primnodes.h,v 1.29 1999/05/25 22:42:59 momjian Exp $ + * $Id: primnodes.h,v 1.30 1999/07/15 23:03:56 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PRIMNODES_H #define PRIMNODES_H -#include <utils/fcache.h> -#include <access/attnum.h> -#include <nodes/pg_list.h> +#include "utils/fcache.h" +#include "access/attnum.h" +#include "nodes/pg_list.h" /* ---------------------------------------------------------------- * node definitions diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index c5d7d308407..e305870aa7b 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: relation.h,v 1.33 1999/07/15 15:21:18 momjian Exp $ + * $Id: relation.h,v 1.34 1999/07/15 23:03:56 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef RELATION_H #define RELATION_H -#include <nodes/parsenodes.h> +#include "nodes/parsenodes.h" /* * Relids diff --git a/src/include/optimizer/_deadcode/xfunc.h b/src/include/optimizer/_deadcode/xfunc.h index d925be5630f..4ec0c5aabb7 100644 --- a/src/include/optimizer/_deadcode/xfunc.h +++ b/src/include/optimizer/_deadcode/xfunc.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: xfunc.h,v 1.1 1999/07/15 15:21:24 momjian Exp $ + * $Id: xfunc.h,v 1.2 1999/07/15 23:03:59 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef XFUNC_H #define XFUNC_H -#include <utils/rel.h> -#include <nodes/relation.h> +#include "utils/rel.h" +#include "nodes/relation.h" /* command line arg flags */ #define XFUNC_OFF -1 /* do no optimization of expensive preds */ diff --git a/src/include/optimizer/clauses.h b/src/include/optimizer/clauses.h index 1416cc25450..de135ca1d53 100644 --- a/src/include/optimizer/clauses.h +++ b/src/include/optimizer/clauses.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: clauses.h,v 1.20 1999/07/15 15:21:19 momjian Exp $ + * $Id: clauses.h,v 1.21 1999/07/15 23:03:57 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef CLAUSES_H #define CLAUSES_H -#include <nodes/relation.h> +#include "nodes/relation.h" extern Expr *make_clause(int type, Node *oper, List *args); diff --git a/src/include/optimizer/ordering.h b/src/include/optimizer/ordering.h index 30b262b9e37..61dc0a43366 100644 --- a/src/include/optimizer/ordering.h +++ b/src/include/optimizer/ordering.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: ordering.h,v 1.14 1999/05/25 16:14:20 momjian Exp $ + * $Id: ordering.h,v 1.15 1999/07/15 23:03:58 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef ORDERING_H #define ORDERING_H -#include <nodes/relation.h> +#include "nodes/relation.h" extern bool pathorder_match(PathOrder *path_ordering1, PathOrder *path_ordering2, int *better_sort); diff --git a/src/include/optimizer/plancat.h b/src/include/optimizer/plancat.h index cd67cd16d54..90c5e3e099f 100644 --- a/src/include/optimizer/plancat.h +++ b/src/include/optimizer/plancat.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: plancat.h,v 1.11 1999/02/13 23:21:50 momjian Exp $ + * $Id: plancat.h,v 1.12 1999/07/15 23:03:58 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PLANCAT_H #define PLANCAT_H -#include <nodes/parsenodes.h> +#include "nodes/parsenodes.h" /* * transient data structure to hold return value of index_info. Note that diff --git a/src/include/optimizer/prep.h b/src/include/optimizer/prep.h index c3b06101c67..54733af3e7b 100644 --- a/src/include/optimizer/prep.h +++ b/src/include/optimizer/prep.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: prep.h,v 1.15 1999/06/06 17:38:10 tgl Exp $ + * $Id: prep.h,v 1.16 1999/07/15 23:03:59 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PREP_H #define PREP_H -#include <nodes/plannodes.h> -#include <nodes/parsenodes.h> +#include "nodes/plannodes.h" +#include "nodes/parsenodes.h" /* * prototypes for prepqual.c diff --git a/src/include/parser/analyze.h b/src/include/parser/analyze.h index d928f0e7a61..3fa861f1564 100644 --- a/src/include/parser/analyze.h +++ b/src/include/parser/analyze.h @@ -5,14 +5,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: analyze.h,v 1.8 1999/07/13 21:17:40 momjian Exp $ + * $Id: analyze.h,v 1.9 1999/07/15 23:04:00 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef ANALYZE_H #define ANALYZE_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern List *parse_analyze(List *pl, ParseState *parentParseState); diff --git a/src/include/parser/parse_agg.h b/src/include/parser/parse_agg.h index 64a6e3a65e2..f1b400e9c9a 100644 --- a/src/include/parser/parse_agg.h +++ b/src/include/parser/parse_agg.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_agg.h,v 1.11 1999/07/15 15:21:25 momjian Exp $ + * $Id: parse_agg.h,v 1.12 1999/07/15 23:04:01 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_AGG_H #define PARSE_AGG_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern void AddAggToParseState(ParseState *pstate, Aggref *aggref); extern void parseCheckAggregates(ParseState *pstate, Query *qry); diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h index 2b3dddad5c1..a50ab4e0391 100644 --- a/src/include/parser/parse_clause.h +++ b/src/include/parser/parse_clause.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_clause.h,v 1.10 1999/07/15 15:21:25 momjian Exp $ + * $Id: parse_clause.h,v 1.11 1999/07/15 23:04:01 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_CLAUSE_H #define PARSE_CLAUSE_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern void makeRangeTable(ParseState *pstate, char *relname, List *frmList, Node **qual); extern Node *transformWhereClause(ParseState *pstate, Node *where, Node *using); diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h index 0913ce3bbaa..cbc4095e330 100644 --- a/src/include/parser/parse_expr.h +++ b/src/include/parser/parse_expr.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_expr.h,v 1.12 1999/07/15 15:21:26 momjian Exp $ + * $Id: parse_expr.h,v 1.13 1999/07/15 23:04:02 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_EXPR_H #define PARSE_EXPR_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" #include "parser/parse_type.h" extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence); diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index de3487183ab..38626290cb1 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_func.h,v 1.17 1999/07/15 15:21:26 momjian Exp $ + * $Id: parse_func.h,v 1.18 1999/07/15 23:04:02 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSER_FUNC_H #define PARSER_FUNC_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" #define MAXFARGS 8 /* max # args to a c or postquel function */ diff --git a/src/include/parser/parse_node.h b/src/include/parser/parse_node.h index 5a56b5fb75b..3dd2257db5e 100644 --- a/src/include/parser/parse_node.h +++ b/src/include/parser/parse_node.h @@ -5,15 +5,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_node.h,v 1.13 1999/07/15 15:21:27 momjian Exp $ + * $Id: parse_node.h,v 1.14 1999/07/15 23:04:02 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_NODE_H #define PARSE_NODE_H -#include <nodes/parsenodes.h> -#include <utils/rel.h> +#include "nodes/parsenodes.h" +#include "utils/rel.h" /* state information used during parse analysis */ typedef struct ParseState diff --git a/src/include/parser/parse_relation.h b/src/include/parser/parse_relation.h index 12c47636b6a..e44f89c79ba 100644 --- a/src/include/parser/parse_relation.h +++ b/src/include/parser/parse_relation.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_relation.h,v 1.10 1999/07/15 15:21:27 momjian Exp $ + * $Id: parse_relation.h,v 1.11 1999/07/15 23:04:03 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_QUERY_H #define PARSE_RANGE_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern RangeTblEntry *refnameRangeTableEntry(ParseState *pstate, char *refname); extern int refnameRangeTablePosn(ParseState *pstate, diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h index d54ce32d83b..bd520d1bab9 100644 --- a/src/include/parser/parse_target.h +++ b/src/include/parser/parse_target.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_target.h,v 1.13 1999/07/15 15:21:27 momjian Exp $ + * $Id: parse_target.h,v 1.14 1999/07/15 23:04:03 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_TARGET_H #define PARSE_TARGET_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" #define EXPR_COLUMN_FIRST 1 #define EXPR_RELATION_FIRST 2 diff --git a/src/include/parser/parser.h b/src/include/parser/parser.h index 50b99b48ce6..f2c1cb5b5b6 100644 --- a/src/include/parser/parser.h +++ b/src/include/parser/parser.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parser.h,v 1.5 1999/05/13 07:29:20 tgl Exp $ + * $Id: parser.h,v 1.6 1999/07/15 23:04:03 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSER_H #define PARSER_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern List *parser(char *str, Oid *typev, int nargs); diff --git a/src/include/port/nextstep.h b/src/include/port/nextstep.h index d0b43d57163..40451da12b2 100644 --- a/src/include/port/nextstep.h +++ b/src/include/port/nextstep.h @@ -1,4 +1,4 @@ -#include <libc.h> +#include "libc.h" #include <sys/ioctl.h> #if defined(__STRICT_ANSI__) #define isascii(c) ((unsigned)(c)<=0177) diff --git a/src/include/port/solaris_i386.h b/src/include/port/solaris_i386.h index ef47720e8e0..722cbd94e68 100755 --- a/src/include/port/solaris_i386.h +++ b/src/include/port/solaris_i386.h @@ -4,7 +4,7 @@ #define HAS_TEST_AND_SET typedef unsigned char slock_t; -#include <sys/isa_defs.h> +#include "sys/isa_defs.h" #ifndef BIG_ENDIAN #define BIG_ENDIAN 4321 diff --git a/src/include/port/svr4.h b/src/include/port/svr4.h index a460c825c63..67646898d54 100644 --- a/src/include/port/svr4.h +++ b/src/include/port/svr4.h @@ -11,7 +11,7 @@ #ifdef sinix #define HAS_TEST_AND_SET -#include <abi_mutex.h> +#include "abi_mutex.h" typedef abilock_t slock_t; #endif diff --git a/src/include/regex/regex.h b/src/include/regex/regex.h index 55c11733eac..b0b86f3cb6d 100644 --- a/src/include/regex/regex.h +++ b/src/include/regex/regex.h @@ -41,7 +41,7 @@ #define _REGEX_H_ #include <sys/types.h> -#include <mb/pg_wchar.h> +#include "mb/pg_wchar.h" /* types */ typedef off_t regoff_t; diff --git a/src/include/rewrite/prs2lock.h b/src/include/rewrite/prs2lock.h index 5e7b8fb014e..06b396a9882 100644 --- a/src/include/rewrite/prs2lock.h +++ b/src/include/rewrite/prs2lock.h @@ -5,15 +5,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: prs2lock.h,v 1.9 1999/02/13 23:21:59 momjian Exp $ + * $Id: prs2lock.h,v 1.10 1999/07/15 23:04:07 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PRS2LOCK_H #define PRS2LOCK_H -#include <access/attnum.h> -#include <nodes/pg_list.h> +#include "access/attnum.h" +#include "nodes/pg_list.h" /* * RewriteRule - diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h index 7d257e33e60..0b496f07bf5 100644 --- a/src/include/storage/buf_internals.h +++ b/src/include/storage/buf_internals.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: buf_internals.h,v 1.29 1999/05/25 16:14:38 momjian Exp $ + * $Id: buf_internals.h,v 1.30 1999/07/15 23:04:08 momjian Exp $ * * NOTE * If BUFFERPAGE0 is defined, then 0 will be used as a @@ -17,8 +17,8 @@ #ifndef BUFMGR_INTERNALS_H #define BUFMGR_INTERNALS_H -#include <storage/lmgr.h> -#include <storage/buf.h> +#include "storage/lmgr.h" +#include "storage/buf.h" /* Buf Mgr constants */ /* in bufmgr.c */ diff --git a/src/include/storage/bufmgr.h b/src/include/storage/bufmgr.h index a0d08a2d78b..c434d1beec4 100644 --- a/src/include/storage/bufmgr.h +++ b/src/include/storage/bufmgr.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: bufmgr.h,v 1.27 1999/07/15 15:21:31 momjian Exp $ + * $Id: bufmgr.h,v 1.28 1999/07/15 23:04:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,11 +15,11 @@ #include <stdio.h> -#include <storage/ipc.h> -#include <storage/block.h> -#include <storage/buf.h> -#include <storage/buf_internals.h> -#include <utils/rel.h> +#include "storage/ipc.h" +#include "storage/block.h" +#include "storage/buf.h" +#include "storage/buf_internals.h" +#include "utils/rel.h" /* * the maximum size of a disk block for any possible installation. diff --git a/src/include/storage/bufpage.h b/src/include/storage/bufpage.h index 6921f97a089..87f5be67a9f 100644 --- a/src/include/storage/bufpage.h +++ b/src/include/storage/bufpage.h @@ -6,19 +6,19 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: bufpage.h,v 1.24 1999/07/15 15:21:32 momjian Exp $ + * $Id: bufpage.h,v 1.25 1999/07/15 23:04:09 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef BUFPAGE_H #define BUFPAGE_H -#include <storage/off.h> -#include <storage/itemid.h> -#include <storage/item.h> -#include <storage/buf.h> -#include <storage/page.h> -#include <storage/bufmgr.h> +#include "storage/off.h" +#include "storage/itemid.h" +#include "storage/item.h" +#include "storage/buf.h" +#include "storage/page.h" +#include "storage/bufmgr.h" /* * a postgres disk page is an abstraction layered on top of a postgres diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index e9a96c8190a..8ae09e19905 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: ipc.h,v 1.34 1999/02/21 01:41:47 tgl Exp $ + * $Id: ipc.h,v 1.35 1999/07/15 23:04:10 momjian Exp $ * * NOTES * This file is very architecture-specific. This stuff should actually @@ -24,7 +24,7 @@ #include <sys/types.h> #include <sys/ipc.h> /* For IPC_PRIVATE */ -#include <config.h> +#include "config.h" #ifndef HAVE_UNION_SEMUN union semun diff --git a/src/include/storage/itempos.h b/src/include/storage/itempos.h index 7980ea15575..42368ddf5c3 100644 --- a/src/include/storage/itempos.h +++ b/src/include/storage/itempos.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: itempos.h,v 1.7 1999/02/13 23:22:06 momjian Exp $ + * $Id: itempos.h,v 1.8 1999/07/15 23:04:10 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef ITEMPOS_H #define ITEMPOS_H -#include <storage/itemid.h> -#include <storage/buf.h> +#include "storage/itemid.h" +#include "storage/buf.h" typedef struct ItemSubpositionData { diff --git a/src/include/storage/itemptr.h b/src/include/storage/itemptr.h index 4f6a131f741..6d5f1e377e9 100644 --- a/src/include/storage/itemptr.h +++ b/src/include/storage/itemptr.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: itemptr.h,v 1.11 1999/05/25 16:14:42 momjian Exp $ + * $Id: itemptr.h,v 1.12 1999/07/15 23:04:11 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef ITEMPTR_H #define ITEMPTR_H -#include <storage/off.h> -#include <storage/block.h> +#include "storage/off.h" +#include "storage/block.h" /* * ItemPointer: diff --git a/src/include/storage/large_object.h b/src/include/storage/large_object.h index bfe08d2c259..52c89c4f347 100644 --- a/src/include/storage/large_object.h +++ b/src/include/storage/large_object.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: large_object.h,v 1.10 1999/02/13 23:22:06 momjian Exp $ + * $Id: large_object.h,v 1.11 1999/07/15 23:04:11 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,7 +16,7 @@ #include <sys/types.h> -#include <access/relscan.h> +#include "access/relscan.h" /* * This structure will eventually have lots more stuff associated with it. diff --git a/src/include/storage/lmgr.h b/src/include/storage/lmgr.h index c7e649f19c0..8903af8ec6b 100644 --- a/src/include/storage/lmgr.h +++ b/src/include/storage/lmgr.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: lmgr.h,v 1.21 1999/07/15 15:21:32 momjian Exp $ + * $Id: lmgr.h,v 1.22 1999/07/15 23:04:11 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef LMGR_H #define LMGR_H -#include <storage/lock.h> -#include <utils/rel.h> +#include "storage/lock.h" +#include "utils/rel.h" #define AccessShareLock 1 /* SELECT */ #define RowShareLock 2 /* SELECT FOR UPDATE */ diff --git a/src/include/storage/lock.h b/src/include/storage/lock.h index 327f57cc7d1..fb74629e637 100644 --- a/src/include/storage/lock.h +++ b/src/include/storage/lock.h @@ -6,17 +6,17 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: lock.h,v 1.31 1999/07/15 20:32:29 momjian Exp $ + * $Id: lock.h,v 1.32 1999/07/15 23:04:12 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef LOCK_H_ #define LOCK_H_ -#include <storage/shmem.h> -#include <storage/itemptr.h> -#include <storage/sinvaladt.h> -#include <utils/array.h> +#include "storage/shmem.h" +#include "storage/itemptr.h" +#include "storage/sinvaladt.h" +#include "utils/array.h" extern SPINLOCK LockMgrLock; typedef int LOCKMASK; diff --git a/src/include/storage/multilev.h b/src/include/storage/multilev.h index 2baccce5bef..067bd24381e 100644 --- a/src/include/storage/multilev.h +++ b/src/include/storage/multilev.h @@ -7,14 +7,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: multilev.h,v 1.15 1999/02/13 23:22:07 momjian Exp $ + * $Id: multilev.h,v 1.16 1999/07/15 23:04:13 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef MULTILEV_H #define MULTILEV_H -#include <storage/lmgr.h> +#include "storage/lmgr.h" #ifdef LowLevelLocking diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index f62106e1ce2..4a5eb5533a2 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: proc.h,v 1.24 1999/05/25 22:43:27 momjian Exp $ + * $Id: proc.h,v 1.25 1999/07/15 23:04:13 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef _PROC_H_ #define _PROC_H_ -#include <storage/lock.h> +#include "storage/lock.h" typedef struct { diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index 3125d822ec4..6b6e4ecfb0f 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.63 1999/07/13 20:12:51 momjian Exp $ + * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.64 1999/07/15 23:04:13 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -307,7 +307,7 @@ tas(slock_t *s_lock) * assembly from his NECEWS SVR4 port, but we probably ought to retain this * for the R3000 chips out there. */ -#include <mutex.h> +#include "mutex.h" #define TAS(lock) (test_and_set(lock,1)) #define S_UNLOCK(lock) (test_then_and(lock,0)) #define S_INIT_LOCK(lock) (test_then_and(lock,0)) diff --git a/src/include/storage/shmem.h b/src/include/storage/shmem.h index 66365b4a9a7..bb9e004ba26 100644 --- a/src/include/storage/shmem.h +++ b/src/include/storage/shmem.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: shmem.h,v 1.18 1999/05/25 22:43:27 momjian Exp $ + * $Id: shmem.h,v 1.19 1999/07/15 23:04:14 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef SHMEM_H #define SHMEM_H -#include <utils/hsearch.h> -#include <storage/spin.h> +#include "utils/hsearch.h" +#include "storage/spin.h" /* The shared memory region can start at a different address diff --git a/src/include/storage/sinval.h b/src/include/storage/sinval.h index 8ef86c8a488..8d0f35a43c3 100644 --- a/src/include/storage/sinval.h +++ b/src/include/storage/sinval.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: sinval.h,v 1.11 1999/05/28 17:03:31 tgl Exp $ + * $Id: sinval.h,v 1.12 1999/07/15 23:04:14 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef SINVAL_H #define SINVAL_H -#include <storage/itemptr.h> -#include <storage/spin.h> +#include "storage/itemptr.h" +#include "storage/spin.h" extern SPINLOCK SInvalLock; diff --git a/src/include/storage/sinvaladt.h b/src/include/storage/sinvaladt.h index c939a0c6dbe..03b2a3a8f53 100644 --- a/src/include/storage/sinvaladt.h +++ b/src/include/storage/sinvaladt.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: sinvaladt.h,v 1.14 1999/05/28 17:03:30 tgl Exp $ + * $Id: sinvaladt.h,v 1.15 1999/07/15 23:04:15 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef SINVALADT_H #define SINVALADT_H -#include <storage/itemptr.h> -#include <storage/ipc.h> +#include "storage/itemptr.h" +#include "storage/ipc.h" /* * The structure of the shared cache invaidation segment diff --git a/src/include/storage/smgr.h b/src/include/storage/smgr.h index c3c0d314462..c1e81abcf55 100644 --- a/src/include/storage/smgr.h +++ b/src/include/storage/smgr.h @@ -6,16 +6,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: smgr.h,v 1.14 1999/02/13 23:22:10 momjian Exp $ + * $Id: smgr.h,v 1.15 1999/07/15 23:04:15 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef SMGR_H #define SMGR_H -#include <storage/spin.h> -#include <storage/block.h> -#include <utils/rel.h> +#include "storage/spin.h" +#include "storage/block.h" +#include "utils/rel.h" #define SM_FAIL 0 #define SM_SUCCESS 1 diff --git a/src/include/storage/spin.h b/src/include/storage/spin.h index ace673d98ec..be976c16b23 100644 --- a/src/include/storage/spin.h +++ b/src/include/storage/spin.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: spin.h,v 1.8 1999/02/13 23:22:10 momjian Exp $ + * $Id: spin.h,v 1.9 1999/07/15 23:04:16 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef SPIN_H #define SPIN_H -#include <storage/ipc.h> +#include "storage/ipc.h" /* * two implementations of spin locks diff --git a/src/include/tcop/dest.h b/src/include/tcop/dest.h index a694d435c72..6d9cc55ea7e 100644 --- a/src/include/tcop/dest.h +++ b/src/include/tcop/dest.h @@ -44,14 +44,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dest.h,v 1.21 1999/07/15 15:21:36 momjian Exp $ + * $Id: dest.h,v 1.22 1999/07/15 23:04:17 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef DEST_H #define DEST_H -#include <access/htup.h> +#include "access/htup.h" /* ---------------- * CommandDest is a simplistic means of identifying the desired diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h index 5c783d50142..66148375a77 100644 --- a/src/include/tcop/pquery.h +++ b/src/include/tcop/pquery.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pquery.h,v 1.12 1999/02/13 23:22:13 momjian Exp $ + * $Id: pquery.h,v 1.13 1999/07/15 23:04:17 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PQUERY_H #define PQUERY_H -#include <executor/execdesc.h> +#include "executor/execdesc.h" /* moved to execdesc.h extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree, diff --git a/src/include/tcop/utility.h b/src/include/tcop/utility.h index 8baffbeb2c4..1fc1ccf1e77 100644 --- a/src/include/tcop/utility.h +++ b/src/include/tcop/utility.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: utility.h,v 1.7 1999/02/13 23:22:13 momjian Exp $ + * $Id: utility.h,v 1.8 1999/07/15 23:04:18 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef UTILITY_H #define UTILITY_H -#include <executor/execdesc.h> +#include "executor/execdesc.h" extern void ProcessUtility(Node *parsetree, CommandDest dest); diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h index c0270b3a125..71a155c9935 100644 --- a/src/include/utils/acl.h +++ b/src/include/utils/acl.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: acl.h,v 1.21 1999/07/15 15:21:38 momjian Exp $ + * $Id: acl.h,v 1.22 1999/07/15 23:04:19 momjian Exp $ * * NOTES * For backward-compatability purposes we have to allow there @@ -22,8 +22,8 @@ #ifndef ACL_H #define ACL_H -#include <nodes/parsenodes.h> -#include <utils/array.h> +#include "nodes/parsenodes.h" +#include "utils/array.h" #include "utils/memutils.h" /* diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index f653068e200..58dd539b91b 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.82 1999/07/15 15:21:39 momjian Exp $ + * $Id: builtins.h,v 1.83 1999/07/15 23:04:20 momjian Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -22,14 +22,14 @@ #ifndef BUILTINS_H #define BUILTINS_H -#include <storage/itemptr.h> -#include <utils/array.h> -#include <utils/geo_decls.h> -#include <utils/datetime.h> -#include <utils/nabstime.h> -#include <utils/int8.h> -#include <utils/inet.h> -#include <utils/numeric.h> +#include "storage/itemptr.h" +#include "utils/array.h" +#include "utils/geo_decls.h" +#include "utils/datetime.h" +#include "utils/nabstime.h" +#include "utils/int8.h" +#include "utils/inet.h" +#include "utils/numeric.h" /* * Defined in adt/ diff --git a/src/include/utils/catcache.h b/src/include/utils/catcache.h index 601e59596a6..b951cd634ea 100644 --- a/src/include/utils/catcache.h +++ b/src/include/utils/catcache.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: catcache.h,v 1.17 1999/07/15 15:21:39 momjian Exp $ + * $Id: catcache.h,v 1.18 1999/07/15 23:04:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,8 +15,8 @@ /* #define CACHEDEBUG turns DEBUG elogs on */ -#include <access/htup.h> -#include <lib/dllist.h> +#include "access/htup.h" +#include "lib/dllist.h" /* * struct catctup: tuples in the cache. diff --git a/src/include/utils/dynamic_loader.h b/src/include/utils/dynamic_loader.h index 601c023387c..78d74966c7f 100644 --- a/src/include/utils/dynamic_loader.h +++ b/src/include/utils/dynamic_loader.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dynamic_loader.h,v 1.11 1999/07/15 15:21:39 momjian Exp $ + * $Id: dynamic_loader.h,v 1.12 1999/07/15 23:04:21 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ #include <sys/param.h> /* For MAXPATHLEN */ /* we need this include because port files use them */ -#include <postgres.h> +#include "postgres.h" #ifdef MIN #undef MIN diff --git a/src/include/utils/fcache.h b/src/include/utils/fcache.h index cb3de1083c0..9b3e902d63e 100644 --- a/src/include/utils/fcache.h +++ b/src/include/utils/fcache.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: fcache.h,v 1.8 1999/02/13 23:22:19 momjian Exp $ + * $Id: fcache.h,v 1.9 1999/07/15 23:04:21 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef FCACHE_H #define FCACHE_H -#include <fmgr.h> +#include "fmgr.h" typedef struct diff --git a/src/include/utils/fcache2.h b/src/include/utils/fcache2.h index 9439b28a797..048c86d4f45 100644 --- a/src/include/utils/fcache2.h +++ b/src/include/utils/fcache2.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: fcache2.h,v 1.8 1999/02/13 23:22:20 momjian Exp $ + * $Id: fcache2.h,v 1.9 1999/07/15 23:04:22 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef FCACHE2_H #define FCACHE2_H -#include <nodes/execnodes.h> +#include "nodes/execnodes.h" extern void setFcache(Node *node, Oid foid, List *argList, ExprContext *econtext); diff --git a/src/include/utils/inval.h b/src/include/utils/inval.h index 3ee354df115..f63941f3967 100644 --- a/src/include/utils/inval.h +++ b/src/include/utils/inval.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: inval.h,v 1.12 1999/07/15 15:21:39 momjian Exp $ + * $Id: inval.h,v 1.13 1999/07/15 23:04:22 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef INVAL_H #define INVAL_H -#include <access/htup.h> +#include "access/htup.h" extern void InitLocalInvalidateData(void); diff --git a/src/include/utils/lsyscache.h b/src/include/utils/lsyscache.h index 6a985ac8c76..39cf80d9ebf 100644 --- a/src/include/utils/lsyscache.h +++ b/src/include/utils/lsyscache.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: lsyscache.h,v 1.17 1999/07/15 15:21:41 momjian Exp $ + * $Id: lsyscache.h,v 1.18 1999/07/15 23:04:23 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef LSYSCACHE_H #define LSYSCACHE_H -#include <access/htup.h> +#include "access/htup.h" extern bool op_class(Oid oprno, int32 opclass, Oid amopid); extern char *get_attname(Oid relid, AttrNumber attnum); diff --git a/src/include/utils/portal.h b/src/include/utils/portal.h index 07186589a90..cfaea911a52 100644 --- a/src/include/utils/portal.h +++ b/src/include/utils/portal.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: portal.h,v 1.16 1999/07/15 15:21:42 momjian Exp $ + * $Id: portal.h,v 1.17 1999/07/15 23:04:23 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -25,8 +25,8 @@ #ifndef PORTAL_H #define PORTAL_H -#include <executor/execdesc.h> -#include <nodes/memnodes.h> +#include "executor/execdesc.h" +#include "nodes/memnodes.h" typedef struct PortalBlockData { diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index 4b2ee9de96f..3dba1337beb 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -6,19 +6,19 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: rel.h,v 1.23 1999/05/25 16:14:57 momjian Exp $ + * $Id: rel.h,v 1.24 1999/07/15 23:04:23 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef REL_H #define REL_H -#include <catalog/pg_am.h> -#include <catalog/pg_class.h> -#include <access/strat.h> -#include <access/tupdesc.h> -#include <rewrite/prs2lock.h> -#include <storage/fd.h> +#include "catalog/pg_am.h" +#include "catalog/pg_class.h" +#include "access/strat.h" +#include "access/tupdesc.h" +#include "rewrite/prs2lock.h" +#include "storage/fd.h" typedef struct Trigger { diff --git a/src/include/utils/rel2.h b/src/include/utils/rel2.h index 50863611007..ee9ad6f17be 100644 --- a/src/include/utils/rel2.h +++ b/src/include/utils/rel2.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: rel2.h,v 1.8 1999/02/13 23:22:30 momjian Exp $ + * $Id: rel2.h,v 1.9 1999/07/15 23:04:23 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef TMP_REL2_H #define TMP_REL2_H -#include <utils/rel.h> +#include "utils/rel.h" extern IndexStrategy RelationGetIndexStrategy(Relation relation); diff --git a/src/include/utils/relcache.h b/src/include/utils/relcache.h index d95a9a27fe3..cc9ed9e64c1 100644 --- a/src/include/utils/relcache.h +++ b/src/include/utils/relcache.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: relcache.h,v 1.12 1999/05/01 19:09:43 tgl Exp $ + * $Id: relcache.h,v 1.13 1999/07/15 23:04:23 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef RELCACHE_H #define RELCACHE_H -#include <utils/rel.h> +#include "utils/rel.h" /* * relation lookup routines diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index 22949b44346..14f888b76ce 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.14 1999/07/15 15:21:43 momjian Exp $ + * $Id: syscache.h,v 1.15 1999/07/15 23:04:24 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef SYSCACHE_H #define SYSCACHE_H -#include <access/htup.h> +#include "access/htup.h" /* #define CACHEDEBUG *//* turns DEBUG elogs on */ diff --git a/src/include/utils/tqual.h b/src/include/utils/tqual.h index acb3284c9ae..4cb685968b1 100644 --- a/src/include/utils/tqual.h +++ b/src/include/utils/tqual.h @@ -7,15 +7,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tqual.h,v 1.23 1999/07/15 15:21:43 momjian Exp $ + * $Id: tqual.h,v 1.24 1999/07/15 23:04:24 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef TQUAL_H #define TQUAL_H -#include <access/htup.h> -#include <access/xact.h> +#include "access/htup.h" +#include "access/xact.h" typedef struct SnapshotData { |