mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
More cleanups
This commit is contained in:
parent
4312192e6b
commit
466f5fd729
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.7 1996/11/03 12:34:50 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.8 1996/11/05 09:53:01 scrappy Exp $
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* INTERFACE ROUTINES
|
* INTERFACE ROUTINES
|
||||||
@ -73,45 +73,29 @@
|
|||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include <postgres.h>
|
||||||
|
|
||||||
#include "access/relscan.h"
|
#include <storage/bufpage.h>
|
||||||
#include "storage/bufpage.h"
|
#include <access/heapam.h>
|
||||||
|
#include <miscadmin.h>
|
||||||
|
#include <utils/relcache.h>
|
||||||
|
#include <access/valid.h>
|
||||||
|
#include <access/hio.h>
|
||||||
|
#include <storage/lmgr.h>
|
||||||
|
#include <storage/smgr.h>
|
||||||
|
#include <catalog/catalog.h>
|
||||||
|
#include <access/transam.h>
|
||||||
|
#include <access/xact.h>
|
||||||
|
#include <utils/inval.h>
|
||||||
|
#include <utils/memutils.h>
|
||||||
|
|
||||||
#include "access/heapam.h"
|
|
||||||
|
|
||||||
#include "miscadmin.h"
|
|
||||||
|
|
||||||
#include "utils/relcache.h"
|
|
||||||
|
|
||||||
#ifndef HAVE_MEMMOVE
|
#ifndef HAVE_MEMMOVE
|
||||||
# include "regex/utils.h"
|
# include <regex/utils.h>
|
||||||
#else
|
#else
|
||||||
# include <string.h>
|
# include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "access/valid.h"
|
|
||||||
|
|
||||||
#include "storage/bufmgr.h"
|
|
||||||
|
|
||||||
#include "utils/palloc.h"
|
|
||||||
|
|
||||||
#include "access/hio.h"
|
|
||||||
|
|
||||||
#include "storage/lmgr.h"
|
|
||||||
|
|
||||||
#include "storage/smgr.h"
|
|
||||||
|
|
||||||
#include "catalog/catalog.h"
|
|
||||||
|
|
||||||
#include "access/transam.h"
|
|
||||||
|
|
||||||
#include "access/xact.h"
|
|
||||||
|
|
||||||
#include "utils/inval.h"
|
|
||||||
|
|
||||||
#include "utils/memutils.h"
|
|
||||||
|
|
||||||
static bool ImmediateInvalidation;
|
static bool ImmediateInvalidation;
|
||||||
|
|
||||||
/* ----------------------------------------------------------------
|
/* ----------------------------------------------------------------
|
||||||
|
@ -7,18 +7,17 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Id: hio.c,v 1.8 1996/11/03 22:57:28 scrappy Exp $
|
* $Id: hio.c,v 1.9 1996/11/05 09:53:02 scrappy Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include <postgres.h>
|
||||||
|
|
||||||
#include "storage/bufpage.h"
|
#include <storage/bufpage.h>
|
||||||
#include "access/relscan.h"
|
#include <access/heapam.h>
|
||||||
#include "access/heapam.h"
|
#include <storage/bufmgr.h>
|
||||||
#include "storage/bufmgr.h"
|
#include <utils/memutils.h>
|
||||||
#include "utils/memutils.h"
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* amputunique - place tuple at tid
|
* amputunique - place tuple at tid
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.6 1996/11/03 12:34:55 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.7 1996/11/05 09:53:03 scrappy Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* initam should be moved someplace else.
|
* initam should be moved someplace else.
|
||||||
@ -15,22 +15,13 @@
|
|||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <postgres.h>
|
||||||
|
|
||||||
#include "postgres.h"
|
#include <access/heapam.h>
|
||||||
|
#include <utils/mcxt.h>
|
||||||
#include "access/relscan.h"
|
|
||||||
|
|
||||||
#include "access/heapam.h"
|
|
||||||
|
|
||||||
#include "nodes/memnodes.h"
|
|
||||||
|
|
||||||
#include "utils/mcxt.h"
|
|
||||||
|
|
||||||
#include "utils/palloc.h"
|
|
||||||
|
|
||||||
#ifndef HAVE_MEMMOVE
|
#ifndef HAVE_MEMMOVE
|
||||||
# include "regex/utils.h"
|
# include <regex/utils.h>
|
||||||
#else
|
#else
|
||||||
# include <string.h>
|
# include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user