1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Change #include's to use <> and "" as appropriate.

This commit is contained in:
Bruce Momjian
1999-07-15 23:04:24 +00:00
parent 2e6b1e63a3
commit a9591ce66a
211 changed files with 784 additions and 784 deletions

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.54 1999/07/15 22:38:31 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.55 1999/07/15 23:02:51 momjian Exp $
*
* NOTES
* The old interface functions have been converted to macros
@@ -17,10 +17,10 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <catalog/pg_type.h>
#include "access/heapam.h"
#include "catalog/pg_type.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -8,16 +8,16 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.34 1999/07/15 22:38:32 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.35 1999/07/15 23:02:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <access/itup.h>
#include <catalog/pg_type.h>
#include "access/heapam.h"
#include "access/itup.h"
#include "catalog/pg_type.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.22 1999/07/15 22:38:32 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.23 1999/07/15 23:02:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/iqual.h>
#include <executor/execdebug.h>
#include "access/iqual.h"
#include "executor/execdebug.h"
/* ----------------------------------------------------------------
* index scan key qualification code

View File

@@ -7,14 +7,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.15 1999/07/15 22:38:32 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.16 1999/07/15 23:02:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/skey.h>
#include "access/skey.h"
/*
* ScanKeyEntryIsLegal

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.51 1999/07/15 22:38:33 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.52 1999/07/15 23:02:51 momjian Exp $
*
* NOTES
* some of the executor utility code such as "ExecTypeFromTL" should be
@@ -18,13 +18,13 @@
#include <stdio.h>
#include <postgres.h>
#include "postgres.h"
#include <catalog/pg_type.h>
#include <nodes/parsenodes.h>
#include <parser/parse_type.h>
#include <utils/builtins.h>
#include <utils/syscache.h>
#include "catalog/pg_type.h"
#include "nodes/parsenodes.h"
#include "parser/parse_type.h"
#include "utils/builtins.h"
#include "utils/syscache.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -11,16 +11,16 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <catalog/pg_index.h>
#include <access/genam.h>
#include <access/gist.h>
#include <access/gistscan.h>
#include <access/heapam.h>
#include <catalog/index.h>
#include <executor/executor.h>
#include <utils/syscache.h>
#include "catalog/pg_index.h"
#include "access/genam.h"
#include "access/gist.h"
#include "access/gistscan.h"
#include "access/heapam.h"
#include "catalog/index.h"
#include "executor/executor.h"
#include "utils/syscache.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -11,10 +11,10 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/gist.h>
#include <executor/execdebug.h>
#include "access/gist.h"
#include "executor/execdebug.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -10,11 +10,11 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/gist.h>
#include <access/gistscan.h>
#include <access/genam.h>
#include "access/gist.h"
#include "access/gistscan.h"
#include "access/genam.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -12,10 +12,10 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/gist.h>
#include <access/istrat.h>
#include "access/gist.h"
#include "access/istrat.h"
/*
* Note: negate, commute, and negatecommute all assume that operators are

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.27 1999/07/15 22:38:35 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.28 1999/07/15 23:02:54 momjian Exp $
*
* NOTES
* This file contains only the public interface routines.
@@ -15,14 +15,14 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hash.h>
#include <executor/executor.h>
#include <access/heapam.h>
#include <access/genam.h>
#include <catalog/index.h>
#include <miscadmin.h>
#include "access/hash.h"
#include "executor/executor.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "catalog/index.h"
#include "miscadmin.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,14 +7,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.16 1999/07/15 22:38:36 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.17 1999/07/15 23:02:54 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hash.h>
#include "access/hash.h"
static InsertIndexResult _hash_insertonpg(Relation rel, Buffer buf, int keysz, ScanKey scankey, HashItem hitem, Buffer metabuf);
static OffsetNumber _hash_pgaddtup(Relation rel, Buffer buf, int keysz, ScanKey itup_scankey, Size itemsize, HashItem hitem);

View File

@@ -7,16 +7,16 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.21 1999/07/15 22:38:37 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.22 1999/07/15 23:02:55 momjian Exp $
*
* NOTES
* Overflow pages look like ordinary relation pages.
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hash.h>
#include "access/hash.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.21 1999/07/15 22:38:37 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.22 1999/07/15 23:02:55 momjian Exp $
*
* NOTES
* Postgres hash pages look like ordinary relation pages. The opaque
@@ -23,11 +23,11 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hash.h>
#include <miscadmin.h>
#include <access/genam.h>
#include "access/hash.h"
#include "miscadmin.h"
#include "access/genam.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.19 1999/07/15 15:18:33 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.20 1999/07/15 23:02:55 momjian Exp $
*
* NOTES
* Because we can be doing an index scan on a relation while we
@@ -27,9 +27,9 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hash.h>
#include "access/hash.h"
static void _hash_scandel(IndexScanDesc scan, BlockNumber blkno, OffsetNumber offno);
static bool _hash_scantouched(IndexScanDesc scan, BlockNumber blkno, OffsetNumber offno);

View File

@@ -7,14 +7,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.18 1999/07/15 22:38:38 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.19 1999/07/15 23:02:55 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hash.h>
#include "access/hash.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,12 +7,12 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.14 1999/07/15 22:38:38 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.15 1999/07/15 23:02:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
/*

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.18 1999/07/15 22:38:39 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.19 1999/07/15 23:02:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hash.h>
#include <access/iqual.h>
#include "access/hash.h"
#include "access/iqual.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.49 1999/07/15 22:38:40 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.50 1999/07/15 23:02:57 momjian Exp $
*
*
* INTERFACE ROUTINES
@@ -73,17 +73,17 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <miscadmin.h>
#include <utils/relcache.h>
#include <access/valid.h>
#include <access/hio.h>
#include <storage/smgr.h>
#include <catalog/catalog.h>
#include <utils/inval.h>
#include <utils/builtins.h>
#include "access/heapam.h"
#include "miscadmin.h"
#include "utils/relcache.h"
#include "access/valid.h"
#include "access/hio.h"
#include "storage/smgr.h"
#include "catalog/catalog.h"
#include "utils/inval.h"
#include "utils/builtins.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Id: hio.c,v 1.23 1999/07/15 22:38:41 momjian Exp $
* $Id: hio.c,v 1.24 1999/07/15 23:02:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/hio.h>
#include <access/heapam.h>
#include "access/hio.h"
#include "access/heapam.h"
/*
* amputunique - place tuple at tid

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.18 1999/07/15 22:38:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.19 1999/07/15 23:02:58 momjian Exp $
*
* NOTES
* initam should be moved someplace else.
@@ -18,9 +18,9 @@
#include <stdio.h>
#include <time.h>
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include "access/heapam.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.18 1999/07/15 22:38:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.19 1999/07/15 23:02:58 momjian Exp $
*
* NOTES
* many of the old access method routines have been turned into
@@ -44,9 +44,9 @@
* ----------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/genam.h>
#include "access/genam.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.33 1999/07/15 22:38:43 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.34 1999/07/15 23:02:59 momjian Exp $
*
* INTERFACE ROUTINES
* index_open - open an index relation by relationId
@@ -63,11 +63,11 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/genam.h>
#include <utils/relcache.h>
#include <access/heapam.h>
#include "access/genam.h"
#include "utils/relcache.h"
#include "access/heapam.h"
/* ----------------
* undefine macros we aren't going to use that would otherwise

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.25 1999/07/15 22:38:45 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.26 1999/07/15 23:02:59 momjian Exp $
*
* NOTES
* These functions are stored in pg_amproc. For each operator class
@@ -22,9 +22,9 @@
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <utils/builtins.h>
#include "utils/builtins.h"
int32
btint2cmp(int16 a, int16 b)

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.45 1999/07/15 22:38:45 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.46 1999/07/15 23:03:00 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/nbtree.h>
#include <access/heapam.h>
#include "access/nbtree.h"
#include "access/heapam.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.27 1999/07/15 22:38:46 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.28 1999/07/15 23:03:00 momjian Exp $
*
* NOTES
* Postgres btree pages look like ordinary relation pages. The opaque
@@ -22,10 +22,10 @@
#include <stdio.h>
#include <time.h>
#include <postgres.h>
#include "postgres.h"
#include <access/nbtree.h>
#include <miscadmin.h>
#include "access/nbtree.h"
#include "miscadmin.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.42 1999/07/15 22:38:47 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtree.c,v 1.43 1999/07/15 23:03:00 momjian Exp $
*
* NOTES
* This file contains only the public interface routines.
@@ -16,14 +16,14 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/genam.h>
#include <access/nbtree.h>
#include <executor/executor.h>
#include <access/heapam.h>
#include <catalog/index.h>
#include <miscadmin.h>
#include "access/genam.h"
#include "access/nbtree.h"
#include "executor/executor.h"
#include "access/heapam.h"
#include "catalog/index.h"
#include "miscadmin.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/Attic/nbtscan.c,v 1.26 1999/07/15 22:38:48 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/Attic/nbtscan.c,v 1.27 1999/07/15 23:03:00 momjian Exp $
*
*
* NOTES
@@ -27,9 +27,9 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/nbtree.h>
#include "access/nbtree.h"
typedef struct BTScanListData
{

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.48 1999/07/15 22:38:48 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.49 1999/07/15 23:03:00 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/genam.h>
#include <access/nbtree.h>
#include "access/genam.h"
#include "access/nbtree.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/Attic/nbtstrat.c,v 1.9 1999/07/15 22:38:49 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/Attic/nbtstrat.c,v 1.10 1999/07/15 23:03:01 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/istrat.h>
#include <access/nbtree.h>
#include "access/istrat.h"
#include "access/nbtree.h"
/*
* Note:

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.16 1999/07/15 22:38:51 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtget.c,v 1.17 1999/07/15 23:03:01 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/iqual.h>
#include <access/rtree.h>
#include "access/iqual.h"
#include "access/rtree.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,14 +7,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtproc.c,v 1.21 1999/07/15 22:38:51 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtproc.c,v 1.22 1999/07/15 23:03:01 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <utils/builtins.h>
#include "utils/builtins.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,19 +7,19 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.33 1999/07/15 22:38:51 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.34 1999/07/15 23:03:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/genam.h>
#include <catalog/index.h>
#include <access/rtree.h>
#include <utils/geo_decls.h>
#include <executor/executor.h>
#include <access/heapam.h>
#include "access/genam.h"
#include "catalog/index.h"
#include "access/rtree.h"
#include "utils/geo_decls.h"
#include "executor/executor.h"
#include "access/heapam.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.26 1999/07/15 22:38:52 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.27 1999/07/15 23:03:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/genam.h>
#include <access/rtree.h>
#include "access/genam.h"
#include "access/rtree.h"
#ifndef HAVE_MEMMOVE
#else

View File

@@ -7,15 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtstrat.c,v 1.12 1999/07/15 22:38:53 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtstrat.c,v 1.13 1999/07/15 23:03:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/rtree.h>
#include <access/istrat.h>
#include "access/rtree.h"
#include "access/istrat.h"
static StrategyNumber RelationGetRTStrategy(Relation r,
AttrNumber attnum, RegProcedure proc);

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.29 1999/07/15 22:38:53 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.30 1999/07/15 23:03:02 momjian Exp $
*
* NOTES
* This file contains the high level access-method interface to the
@@ -16,11 +16,11 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <catalog/catname.h>
#include <commands/vacuum.h>
#include "access/heapam.h"
#include "catalog/catname.h"
#include "commands/vacuum.h"
static int RecoveryCheckingEnabled(void);
static void TransRecover(Relation logRelation);

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/transsup.c,v 1.22 1999/07/15 22:38:54 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/transsup.c,v 1.23 1999/07/15 23:03:03 momjian Exp $
*
* NOTES
* This file contains support functions for the high
@@ -16,10 +16,10 @@
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <utils/bit.h>
#include <access/xact.h>
#include "utils/bit.h"
#include "access/xact.h"
static XidStatus TransBlockGetXidStatus(Block tblock,
TransactionId transactionId);

View File

@@ -7,16 +7,16 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/varsup.c,v 1.23 1999/07/15 22:38:54 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/varsup.c,v 1.24 1999/07/15 23:03:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <catalog/catname.h>
#include <storage/proc.h>
#include "access/heapam.h"
#include "catalog/catname.h"
#include "storage/proc.h"
static void GetNewObjectIdBlock(Oid *oid_return, int oid_block_size);
static void VariableRelationGetNextOid(Oid *oid_return);

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.44 1999/07/15 22:38:54 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.45 1999/07/15 23:03:03 momjian Exp $
*
* NOTES
* Transaction aborts can now occur two ways:
@@ -142,16 +142,16 @@
* [PA, 7/17/98]
* [PA] is Pascal Andr<64> <andre@via.ecp.fr>
*/
#include <postgres.h>
#include "postgres.h"
#include <utils/inval.h>
#include <utils/portal.h>
#include <storage/proc.h>
#include <catalog/heap.h>
#include <utils/relcache.h>
#include <commands/async.h>
#include <commands/sequence.h>
#include <libpq/be-fsstubs.h>
#include "utils/inval.h"
#include "utils/portal.h"
#include "storage/proc.h"
#include "catalog/heap.h"
#include "utils/relcache.h"
#include "commands/async.h"
#include "commands/sequence.h"
#include "libpq/be-fsstubs.h"
extern bool SharedBufferChanged;

View File

@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: xid.c,v 1.24 1999/07/15 15:18:45 momjian Exp $
* $Id: xid.c,v 1.25 1999/07/15 23:03:04 momjian Exp $
*
* OLD COMMENTS
* XXX WARNING
@@ -20,8 +20,8 @@
#include <stdio.h>
#include <postgres.h>
#include <access/xact.h>
#include "postgres.h"
#include "access/xact.h"
extern TransactionId NullTransactionId;
extern TransactionId DisabledTransactionId;