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:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user