postgresql/src/backend/commands/vacuum.c

2279 lines
63 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* vacuum.c--
* the postgres vacuum cleaner
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.32 1997/05/05 10:01:02 vadim Exp $
*
*-------------------------------------------------------------------------
*/
#include <sys/file.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
1996-11-06 09:21:43 +01:00
#include <postgres.h>
1997-02-07 17:24:12 +01:00
#include <fmgr.h>
1996-11-06 09:21:43 +01:00
#include <utils/portal.h>
#include <access/genam.h>
#include <access/heapam.h>
#include <access/xact.h>
#include <storage/bufmgr.h>
#include <access/transam.h>
#include <catalog/pg_index.h>
1996-11-27 08:27:20 +01:00
#include <catalog/index.h>
1996-11-06 09:21:43 +01:00
#include <catalog/catname.h>
#include <catalog/catalog.h>
1996-11-06 09:21:43 +01:00
#include <catalog/pg_class.h>
#include <catalog/pg_proc.h>
1997-02-07 17:24:12 +01:00
#include <catalog/pg_statistic.h>
#include <catalog/pg_type.h>
#include <catalog/pg_operator.h>
1996-11-06 09:21:43 +01:00
#include <storage/smgr.h>
#include <storage/lmgr.h>
#include <utils/inval.h>
1996-11-06 09:21:43 +01:00
#include <utils/mcxt.h>
1997-02-07 17:24:12 +01:00
#include <utils/inval.h>
1996-11-27 08:27:20 +01:00
#include <utils/syscache.h>
#include <utils/builtins.h>
1996-11-06 09:21:43 +01:00
#include <commands/vacuum.h>
1997-02-07 17:24:12 +01:00
#include <parser/catalog_utils.h>
1996-11-06 09:21:43 +01:00
#include <storage/bufpage.h>
1996-11-27 08:27:20 +01:00
#include "storage/shmem.h"
#ifndef HAVE_GETRUSAGE
1996-11-06 09:21:43 +01:00
# include <rusagestub.h>
#else
1996-11-06 09:21:43 +01:00
# include <sys/time.h>
# include <sys/resource.h>
#endif
#include <port-protos.h>
bool VacuumRunning = false;
static Portal vc_portal;
1997-02-07 17:24:12 +01:00
static int MESSAGE_LEVEL; /* message level */
1996-11-27 08:27:20 +01:00
1997-02-07 17:24:12 +01:00
#define swapLong(a,b) {long tmp; tmp=a; a=b; b=tmp;}
#define swapInt(a,b) {int tmp; tmp=a; a=b; b=tmp;}
#define swapDatum(a,b) {Datum tmp; tmp=a; a=b; b=tmp;}
#define VacAttrStatsEqValid(stats) ( stats->f_cmpeq != NULL )
#define VacAttrStatsLtGtValid(stats) ( stats->f_cmplt != NULL && \
stats->f_cmpgt != NULL && \
1997-02-07 17:24:12 +01:00
RegProcedureIsValid(stats->outfunc) )
1996-11-27 08:27:20 +01:00
/* non-export function prototypes */
1997-02-07 17:24:12 +01:00
static void vc_init(void);
static void vc_shutdown(void);
static void vc_vacuum(NameData *VacRelP, bool analyze, List *va_cols);
static VRelList vc_getrels(NameData *VacRelP);
static void vc_vacone (Oid relid, bool analyze, List *va_cols);
1997-02-07 17:24:12 +01:00
static void vc_scanheap (VRelStats *vacrelstats, Relation onerel, VPageList Vvpl, VPageList Fvpl);
static void vc_rpfheap (VRelStats *vacrelstats, Relation onerel, VPageList Vvpl, VPageList Fvpl, int nindices, Relation *Irel);
static void vc_vacheap (VRelStats *vacrelstats, Relation onerel, VPageList vpl);
static void vc_vacpage (Page page, VPageDescr vpd, Relation archrel);
static void vc_vaconeind (VPageList vpl, Relation indrel, int nhtups);
static void vc_scanoneind (Relation indrel, int nhtups);
static void vc_attrstats(Relation onerel, VRelStats *vacrelstats, HeapTuple htup);
1997-02-07 17:24:12 +01:00
static void vc_bucketcpy(AttributeTupleForm attr, Datum value, Datum *bucket, int16 *bucket_len);
static void vc_updstats(Oid relid, int npages, int ntups, bool hasindex, VRelStats *vacrelstats);
static void vc_delhilowstats (Oid relid, int attcnt, int *attnums);
1997-02-07 17:24:12 +01:00
static void vc_setpagelock(Relation rel, BlockNumber blkno);
static VPageDescr vc_tidreapped (ItemPointer itemptr, VPageList vpl);
static void vc_reappage (VPageList vpl, VPageDescr vpc);
static void vc_vpinsert (VPageList vpl, VPageDescr vpnew);
static void vc_free(VRelList vrl);
1997-02-07 17:24:12 +01:00
static void vc_getindices (Oid relid, int *nindices, Relation **Irel);
static void vc_clsindices (int nindices, Relation *Irel);
static Relation vc_getarchrel(Relation heaprel);
static void vc_archive(Relation archrel, HeapTuple htup);
static bool vc_isarchrel(char *rname);
static void vc_mkindesc (Relation onerel, int nindices, Relation *Irel, IndDesc **Idesc);
static char * vc_find_eq (char *bot, int nelem, int size, char *elm, int (*compar)(char *, char *));
static int vc_cmp_blk (char *left, char *right);
static int vc_cmp_offno (char *left, char *right);
static bool vc_enough_space (VPageDescr vpd, Size len);
void
vacuum(char *vacrel, bool verbose, bool analyze, List *va_spec)
{
char *pname;
MemoryContext old;
PortalVariableMemory pmem;
NameData VacRel;
List *le;
List *va_cols = NIL;
/*
* Create a portal for safe memory across transctions. We need to
* palloc the name space for it because our hash function expects
* the name to be on a longword boundary. CreatePortal copies the
* name to safe storage for us.
*/
pname = (char *) palloc(strlen(VACPNAME) + 1);
strcpy(pname, VACPNAME);
vc_portal = CreatePortal(pname);
pfree(pname);
if (verbose)
1997-02-07 17:24:12 +01:00
MESSAGE_LEVEL = NOTICE;
else
1997-02-07 17:24:12 +01:00
MESSAGE_LEVEL = DEBUG;
/* vacrel gets de-allocated on transaction commit */
if (vacrel)
strcpy(VacRel.data,vacrel);
pmem = PortalGetVariableMemory(vc_portal);
old = MemoryContextSwitchTo((MemoryContext)pmem);
Assert ( va_spec == NIL || analyze );
foreach (le, va_spec)
{
char *col = (char*)lfirst(le);
char *dest;
dest = (char*) palloc (strlen (col) + 1);
strcpy (dest, col);
va_cols = lappend (va_cols, dest);
}
(void) MemoryContextSwitchTo(old);
/* initialize vacuum cleaner */
1997-02-07 17:24:12 +01:00
vc_init();
/* vacuum the database */
if (vacrel)
vc_vacuum (&VacRel, analyze, va_cols);
else
vc_vacuum (NULL, analyze, NIL);
PortalDestroy (&vc_portal);
/* clean up */
1997-02-07 17:24:12 +01:00
vc_shutdown();
}
/*
1997-02-07 17:24:12 +01:00
* vc_init(), vc_shutdown() -- start up and shut down the vacuum cleaner.
*
* We run exactly one vacuum cleaner at a time. We use the file system
* to guarantee an exclusive lock on vacuuming, since a single vacuum
* cleaner instantiation crosses transaction boundaries, and we'd lose
* postgres-style locks at the end of every transaction.
*
* The strangeness with committing and starting transactions in the
* init and shutdown routines is due to the fact that the vacuum cleaner
* is invoked via a sql command, and so is already executing inside
* a transaction. We need to leave ourselves in a predictable state
* on entry and exit to the vacuum cleaner. We commit the transaction
1997-02-07 17:24:12 +01:00
* started in PostgresMain() inside vc_init(), and start one in
* vc_shutdown() to match the commit waiting for us back in
* PostgresMain().
*/
static void
1997-02-07 17:24:12 +01:00
vc_init()
{
int fd;
if ((fd = open("pg_vlock", O_CREAT|O_EXCL, 0600)) < 0)
elog(WARN, "can't create lock file -- another vacuum cleaner running?");
close(fd);
/*
* By here, exclusive open on the lock file succeeded. If we abort
* for any reason during vacuuming, we need to remove the lock file.
* This global variable is checked in the transaction manager on xact
* abort, and the routine vc_abort() is called if necessary.
*/
VacuumRunning = true;
/* matches the StartTransaction in PostgresMain() */
CommitTransactionCommand();
}
static void
1997-02-07 17:24:12 +01:00
vc_shutdown()
{
/* on entry, not in a transaction */
if (unlink("pg_vlock") < 0)
elog(WARN, "vacuum: can't destroy lock file!");
/* okay, we're done */
VacuumRunning = false;
/* matches the CommitTransaction in PostgresMain() */
StartTransactionCommand();
1997-02-07 17:24:12 +01:00
}
void
vc_abort()
{
/* on abort, remove the vacuum cleaner lock file */
(void) unlink("pg_vlock");
VacuumRunning = false;
}
/*
1997-02-07 17:24:12 +01:00
* vc_vacuum() -- vacuum the database.
*
* This routine builds a list of relations to vacuum, and then calls
* code that vacuums them one at a time. We are careful to vacuum each
* relation in a separate transaction in order to avoid holding too many
* locks at one time.
*/
static void
vc_vacuum(NameData *VacRelP, bool analyze, List *va_cols)
{
VRelList vrl, cur;
/* get list of relations */
vrl = vc_getrels(VacRelP);
if ( analyze && VacRelP == NULL && vrl != NULL )
vc_delhilowstats (InvalidOid, 0, NULL);
1997-02-07 17:24:12 +01:00
/* vacuum each heap relation */
for (cur = vrl; cur != (VRelList) NULL; cur = cur->vrl_next)
vc_vacone (cur->vrl_relid, analyze, va_cols);
vc_free(vrl);
}
static VRelList
vc_getrels(NameData *VacRelP)
{
Relation pgclass;
TupleDesc pgcdesc;
HeapScanDesc pgcscan;
HeapTuple pgctup;
Buffer buf;
PortalVariableMemory portalmem;
MemoryContext old;
1996-11-27 08:27:20 +01:00
VRelList vrl, cur;
Datum d;
char *rname;
char rkind;
int16 smgrno;
bool n;
ScanKeyData pgckey;
bool found = false;
StartTransactionCommand();
if (VacRelP->data) {
ScanKeyEntryInitialize(&pgckey, 0x0, Anum_pg_class_relname,
NameEqualRegProcedure,
PointerGetDatum(VacRelP->data));
} else {
ScanKeyEntryInitialize(&pgckey, 0x0, Anum_pg_class_relkind,
CharacterEqualRegProcedure, CharGetDatum('r'));
}
1997-02-07 17:24:12 +01:00
portalmem = PortalGetVariableMemory(vc_portal);
vrl = cur = (VRelList) NULL;
pgclass = heap_openr(RelationRelationName);
pgcdesc = RelationGetTupleDescriptor(pgclass);
pgcscan = heap_beginscan(pgclass, false, NowTimeQual, 1, &pgckey);
while (HeapTupleIsValid(pgctup = heap_getnext(pgcscan, 0, &buf))) {
found = true;
/*
* We have to be careful not to vacuum the archive (since it
* already contains vacuumed tuples), and not to vacuum
* relations on write-once storage managers like the Sony
* jukebox at Berkeley.
*/
d = (Datum) heap_getattr(pgctup, buf, Anum_pg_class_relname,
pgcdesc, &n);
rname = (char*)d;
/* skip archive relations */
1997-02-07 17:24:12 +01:00
if (vc_isarchrel(rname)) {
ReleaseBuffer(buf);
continue;
}
1996-11-27 08:27:20 +01:00
/* don't vacuum large objects for now - something breaks when we do */
if ( (strlen(rname) > 4) && rname[0] == 'X' &&
rname[1] == 'i' && rname[2] == 'n' &&
(rname[3] == 'v' || rname[3] == 'x'))
{
elog (NOTICE, "Rel %.*s: can't vacuum LargeObjects now",
NAMEDATALEN, rname);
ReleaseBuffer(buf);
continue;
}
d = (Datum) heap_getattr(pgctup, buf, Anum_pg_class_relsmgr,
pgcdesc, &n);
smgrno = DatumGetInt16(d);
/* skip write-once storage managers */
if (smgriswo(smgrno)) {
ReleaseBuffer(buf);
continue;
}
d = (Datum) heap_getattr(pgctup, buf, Anum_pg_class_relkind,
pgcdesc, &n);
rkind = DatumGetChar(d);
/* skip system relations */
if (rkind != 'r') {
ReleaseBuffer(buf);
elog(NOTICE, "Vacuum: can not process index and certain system tables" );
continue;
}
/* get a relation list entry for this guy */
old = MemoryContextSwitchTo((MemoryContext)portalmem);
if (vrl == (VRelList) NULL) {
vrl = cur = (VRelList) palloc(sizeof(VRelListData));
} else {
cur->vrl_next = (VRelList) palloc(sizeof(VRelListData));
cur = cur->vrl_next;
}
(void) MemoryContextSwitchTo(old);
cur->vrl_relid = pgctup->t_oid;
cur->vrl_next = (VRelList) NULL;
/* wei hates it if you forget to do this */
ReleaseBuffer(buf);
}
if (found == false)
elog(NOTICE, "Vacuum: table not found" );
heap_endscan(pgcscan);
1997-02-07 17:24:12 +01:00
heap_close(pgclass);
CommitTransactionCommand();
return (vrl);
}
/*
1997-02-07 17:24:12 +01:00
* vc_vacone() -- vacuum one heap relation
*
* This routine vacuums a single heap, cleans out its indices, and
1997-02-07 17:24:12 +01:00
* updates its statistics npages and ntups statistics.
*
* Doing one heap at a time incurs extra overhead, since we need to
* check that the heap exists again just before we vacuum it. The
* reason that we do this is so that vacuuming can be spread across
* many small transactions. Otherwise, two-phase locking would require
* us to lock the entire database during one pass of the vacuum cleaner.
*/
static void
vc_vacone (Oid relid, bool analyze, List *va_cols)
{
Relation pgclass;
TupleDesc pgcdesc;
1997-02-07 17:24:12 +01:00
HeapTuple pgctup, pgttup;
Buffer pgcbuf;
HeapScanDesc pgcscan;
Relation onerel;
ScanKeyData pgckey;
1996-11-27 08:27:20 +01:00
VPageListData Vvpl; /* List of pages to vacuum and/or clean indices */
VPageListData Fvpl; /* List of pages with space enough for re-using */
VPageDescr *vpp;
Relation *Irel;
int32 nindices, i;
1997-02-07 17:24:12 +01:00
VRelStats *vacrelstats;
StartTransactionCommand();
ScanKeyEntryInitialize(&pgckey, 0x0, ObjectIdAttributeNumber,
ObjectIdEqualRegProcedure,
1997-02-07 17:24:12 +01:00
ObjectIdGetDatum(relid));
pgclass = heap_openr(RelationRelationName);
pgcdesc = RelationGetTupleDescriptor(pgclass);
pgcscan = heap_beginscan(pgclass, false, NowTimeQual, 1, &pgckey);
/*
* Race condition -- if the pg_class tuple has gone away since the
* last time we saw it, we don't need to vacuum it.
*/
if (!HeapTupleIsValid(pgctup = heap_getnext(pgcscan, 0, &pgcbuf))) {
heap_endscan(pgcscan);
heap_close(pgclass);
CommitTransactionCommand();
return;
}
/* now open the class and vacuum it */
1997-02-07 17:24:12 +01:00
onerel = heap_open(relid);
vacrelstats = (VRelStats *) palloc(sizeof(VRelStats));
vacrelstats->relid = relid;
vacrelstats->npages = vacrelstats->ntups = 0;
vacrelstats->hasindex = false;
if ( analyze && !IsSystemRelationName ((RelationGetRelationName (onerel))->data) )
{
int attr_cnt, *attnums = NULL;
AttributeTupleForm *attr;
attr_cnt = onerel->rd_att->natts;
attr = onerel->rd_att->attrs;
if ( va_cols != NIL )
{
int tcnt = 0;
List *le;
if ( length (va_cols) > attr_cnt )
elog (WARN, "vacuum: too many attributes specified for relation %.*s",
NAMEDATALEN, (RelationGetRelationName(onerel))->data);
attnums = (int*) palloc (attr_cnt * sizeof (int));
foreach (le, va_cols)
{
char *col = (char*) lfirst(le);
for (i = 0; i < attr_cnt; i++)
{
if ( namestrcmp (&(attr[i]->attname), col) == 0 )
break;
}
if ( i < attr_cnt ) /* found */
attnums[tcnt++] = i;
else
{
elog (WARN, "vacuum: there is no attribute %s in %.*s",
col, NAMEDATALEN, (RelationGetRelationName(onerel))->data);
}
}
attr_cnt = tcnt;
}
vacrelstats->vacattrstats =
(VacAttrStats *) palloc (attr_cnt * sizeof(VacAttrStats));
1997-02-07 17:24:12 +01:00
for (i = 0; i < attr_cnt; i++)
{
Operator func_operator;
OperatorTupleForm pgopform;
VacAttrStats *stats;
stats = &vacrelstats->vacattrstats[i];
stats->attr = palloc(ATTRIBUTE_TUPLE_SIZE);
memmove (stats->attr, attr[((attnums) ? attnums[i] : i)], ATTRIBUTE_TUPLE_SIZE);
stats->best = stats->guess1 = stats->guess2 = 0;
stats->max = stats->min = 0;
stats->best_len = stats->guess1_len = stats->guess2_len = 0;
stats->max_len = stats->min_len = 0;
stats->initialized = false;
stats->best_cnt = stats->guess1_cnt = stats->guess1_hits = stats->guess2_hits = 0;
stats->max_cnt = stats->min_cnt = stats->null_cnt = stats->nonnull_cnt = 0;
1997-02-07 17:24:12 +01:00
func_operator = oper("=",stats->attr->atttypid,stats->attr->atttypid,true);
if (func_operator != NULL)
{
int nargs;
pgopform = (OperatorTupleForm) GETSTRUCT(func_operator);
fmgr_info (pgopform->oprcode, &(stats->f_cmpeq), &nargs);
}
else
stats->f_cmpeq = NULL;
func_operator = oper("<",stats->attr->atttypid,stats->attr->atttypid,true);
if (func_operator != NULL)
{
int nargs;
pgopform = (OperatorTupleForm) GETSTRUCT(func_operator);
fmgr_info (pgopform->oprcode, &(stats->f_cmplt), &nargs);
}
else
stats->f_cmplt = NULL;
func_operator = oper(">",stats->attr->atttypid,stats->attr->atttypid,true);
if (func_operator != NULL)
{
int nargs;
pgopform = (OperatorTupleForm) GETSTRUCT(func_operator);
fmgr_info (pgopform->oprcode, &(stats->f_cmpgt), &nargs);
}
else
stats->f_cmpgt = NULL;
pgttup = SearchSysCacheTuple(TYPOID,
1997-02-07 17:24:12 +01:00
ObjectIdGetDatum(stats->attr->atttypid),
0,0,0);
if (HeapTupleIsValid(pgttup))
stats->outfunc = ((TypeTupleForm) GETSTRUCT(pgttup))->typoutput;
else
stats->outfunc = InvalidOid;
}
vacrelstats->va_natts = attr_cnt;
vc_delhilowstats (relid, ((attnums) ? attr_cnt : 0), attnums);
if ( attnums )
pfree (attnums);
}
else
{
vacrelstats->va_natts = 0;
vacrelstats->vacattrstats = (VacAttrStats *) NULL;
1997-02-07 17:24:12 +01:00
}
/* we require the relation to be locked until the indices are cleaned */
RelationSetLockForWrite(onerel);
1996-11-27 08:27:20 +01:00
/* scan it */
Vvpl.vpl_npages = Fvpl.vpl_npages = 0;
1997-02-07 17:24:12 +01:00
vc_scanheap(vacrelstats, onerel, &Vvpl, &Fvpl);
/* Now open indices */
1996-11-27 08:27:20 +01:00
Irel = (Relation *) NULL;
1997-02-07 17:24:12 +01:00
vc_getindices(vacrelstats->relid, &nindices, &Irel);
1996-11-27 08:27:20 +01:00
if ( nindices > 0 )
1997-02-07 17:24:12 +01:00
vacrelstats->hasindex = true;
1996-11-27 08:27:20 +01:00
else
1997-02-07 17:24:12 +01:00
vacrelstats->hasindex = false;
1996-11-27 08:27:20 +01:00
/* Clean/scan index relation(s) */
1996-11-27 08:27:20 +01:00
if ( Irel != (Relation*) NULL )
{
if ( Vvpl.vpl_npages > 0 )
{
for (i = 0; i < nindices; i++)
1997-02-07 17:24:12 +01:00
vc_vaconeind (&Vvpl, Irel[i], vacrelstats->ntups);
}
else /* just scan indices to update statistic */
{
for (i = 0; i < nindices; i++)
1997-02-07 17:24:12 +01:00
vc_scanoneind (Irel[i], vacrelstats->ntups);
}
1996-11-27 08:27:20 +01:00
}
if ( Fvpl.vpl_npages > 0 ) /* Try to shrink heap */
1997-02-07 17:24:12 +01:00
vc_rpfheap (vacrelstats, onerel, &Vvpl, &Fvpl, nindices, Irel);
else
1997-01-05 11:58:15 +01:00
{
if ( Irel != (Relation*) NULL )
1997-02-07 17:24:12 +01:00
vc_clsindices (nindices, Irel);
if ( Vvpl.vpl_npages > 0 ) /* Clean pages from Vvpl list */
1997-02-07 17:24:12 +01:00
vc_vacheap (vacrelstats, onerel, &Vvpl);
1997-01-05 11:58:15 +01:00
}
1996-11-27 08:27:20 +01:00
/* ok - free Vvpl list of reapped pages */
if ( Vvpl.vpl_npages > 0 )
{
vpp = Vvpl.vpl_pgdesc;
for (i = 0; i < Vvpl.vpl_npages; i++, vpp++)
pfree(*vpp);
pfree (Vvpl.vpl_pgdesc);
if ( Fvpl.vpl_npages > 0 )
pfree (Fvpl.vpl_pgdesc);
}
/* all done with this class */
heap_close(onerel);
heap_endscan(pgcscan);
heap_close(pgclass);
/* update statistics in pg_class */
1997-02-07 17:24:12 +01:00
vc_updstats(vacrelstats->relid, vacrelstats->npages, vacrelstats->ntups,
vacrelstats->hasindex, vacrelstats);
1997-02-07 17:24:12 +01:00
/* next command frees attribute stats */
CommitTransactionCommand();
}
/*
1997-02-07 17:24:12 +01:00
* vc_scanheap() -- scan an open heap relation
*
1996-11-27 08:27:20 +01:00
* This routine sets commit times, constructs Vvpl list of
* empty/uninitialized pages and pages with dead tuples and
* ~LP_USED line pointers, constructs Fvpl list of pages
* appropriate for purposes of shrinking and maintains statistics
* on the number of live tuples in a heap.
*/
static void
1997-02-07 17:24:12 +01:00
vc_scanheap (VRelStats *vacrelstats, Relation onerel,
1996-11-27 08:27:20 +01:00
VPageList Vvpl, VPageList Fvpl)
{
int nblocks, blkno;
ItemId itemid;
ItemPointer itemptr;
HeapTuple htup;
Buffer buf;
1996-11-27 08:27:20 +01:00
Page page, tempPage = NULL;
OffsetNumber offnum, maxoff;
1996-11-27 08:27:20 +01:00
bool pgchanged, tupgone, dobufrel, notup;
AbsoluteTime purgetime, expiretime;
RelativeTime preservetime;
char *relname;
1996-11-27 08:27:20 +01:00
VPageDescr vpc, vp;
uint32 nvac, ntups, nunused, ncrash, nempg, nnepg, nchpg, nemend;
Size frsize, frsusf;
Size min_tlen = MAXTUPLEN;
Size max_tlen = 0;
1997-02-07 17:24:12 +01:00
int32 i/*, attr_cnt*/;
struct rusage ru0, ru1;
getrusage(RUSAGE_SELF, &ru0);
1996-11-27 08:27:20 +01:00
nvac = ntups = nunused = ncrash = nempg = nnepg = nchpg = nemend = 0;
frsize = frsusf = 0;
1997-02-07 17:24:12 +01:00
relname = (RelationGetRelationName(onerel))->data;
nblocks = RelationGetNumberOfBlocks(onerel);
/* calculate the purge time: tuples that expired before this time
will be archived or deleted */
purgetime = GetCurrentTransactionStartTime();
expiretime = (AbsoluteTime)onerel->rd_rel->relexpires;
preservetime = (RelativeTime)onerel->rd_rel->relpreserved;
if (RelativeTimeIsValid(preservetime) && (preservetime)) {
purgetime -= preservetime;
if (AbsoluteTimeIsBackwardCompatiblyValid(expiretime) &&
expiretime > purgetime)
purgetime = expiretime;
}
else if (AbsoluteTimeIsBackwardCompatiblyValid(expiretime))
purgetime = expiretime;
vpc = (VPageDescr) palloc (sizeof(VPageDescrData) + MaxOffsetNumber*sizeof(OffsetNumber));
1996-11-27 08:27:20 +01:00
vpc->vpd_nusd = 0;
for (blkno = 0; blkno < nblocks; blkno++) {
buf = ReadBuffer(onerel, blkno);
page = BufferGetPage(buf);
vpc->vpd_blkno = blkno;
vpc->vpd_noff = 0;
if (PageIsNew(page)) {
elog (NOTICE, "Rel %.*s: Uninitialized page %u - fixing",
NAMEDATALEN, relname, blkno);
PageInit (page, BufferGetPageSize (buf), 0);
1996-11-27 08:27:20 +01:00
vpc->vpd_free = ((PageHeader)page)->pd_upper - ((PageHeader)page)->pd_lower;
frsize += (vpc->vpd_free - sizeof (ItemIdData));
nnepg++;
1996-11-27 08:27:20 +01:00
nemend++;
1997-02-07 17:24:12 +01:00
vc_reappage (Vvpl, vpc);
WriteBuffer(buf);
continue;
}
if (PageIsEmpty(page)) {
1996-11-27 08:27:20 +01:00
vpc->vpd_free = ((PageHeader)page)->pd_upper - ((PageHeader)page)->pd_lower;
frsize += (vpc->vpd_free - sizeof (ItemIdData));
nempg++;
1996-11-27 08:27:20 +01:00
nemend++;
1997-02-07 17:24:12 +01:00
vc_reappage (Vvpl, vpc);
ReleaseBuffer(buf);
continue;
}
pgchanged = false;
1996-11-27 08:27:20 +01:00
notup = true;
maxoff = PageGetMaxOffsetNumber(page);
for (offnum = FirstOffsetNumber;
offnum <= maxoff;
offnum = OffsetNumberNext(offnum)) {
itemid = PageGetItemId(page, offnum);
1996-11-27 08:27:20 +01:00
/*
* Collect un-used items too - it's possible to have
* indices pointing here after crash.
*/
if (!ItemIdIsUsed(itemid)) {
vpc->vpd_voff[vpc->vpd_noff++] = offnum;
1996-11-27 08:27:20 +01:00
nunused++;
continue;
}
htup = (HeapTuple) PageGetItem(page, itemid);
tupgone = false;
if (!AbsoluteTimeIsBackwardCompatiblyValid(htup->t_tmin) &&
TransactionIdIsValid((TransactionId)htup->t_xmin)) {
if (TransactionIdDidAbort(htup->t_xmin)) {
tupgone = true;
} else if (TransactionIdDidCommit(htup->t_xmin)) {
htup->t_tmin = TransactionIdGetCommitTime(htup->t_xmin);
pgchanged = true;
1996-11-27 08:27:20 +01:00
} else if ( !TransactionIdIsInProgress (htup->t_xmin) ) {
/*
* Not Aborted, Not Committed, Not in Progress -
* so it from crashed process. - vadim 11/26/96
*/
ncrash++;
tupgone = true;
}
else {
elog (MESSAGE_LEVEL, "Rel %.*s: TID %u/%u: InsertTransactionInProgress %u",
NAMEDATALEN, relname, blkno, offnum, htup->t_xmin);
}
}
if (TransactionIdIsValid((TransactionId)htup->t_xmax)) {
if (TransactionIdDidAbort(htup->t_xmax)) {
StoreInvalidTransactionId(&(htup->t_xmax));
pgchanged = true;
} else if (TransactionIdDidCommit(htup->t_xmax)) {
if (!AbsoluteTimeIsBackwardCompatiblyReal(htup->t_tmax)) {
htup->t_tmax = TransactionIdGetCommitTime(htup->t_xmax);
pgchanged = true;
}
/*
* Reap the dead tuple if its expiration time is
* before purgetime.
*/
if (htup->t_tmax < purgetime) {
tupgone = true;
}
}
}
1996-11-27 08:27:20 +01:00
/*
* Is it possible at all ? - vadim 11/26/96
*/
if ( !TransactionIdIsValid((TransactionId)htup->t_xmin) )
{
elog (NOTICE, "Rel %.*s: TID %u/%u: INSERT_TRANSACTION_ID IS INVALID. \
1996-11-27 08:27:20 +01:00
DELETE_TRANSACTION_ID_VALID %d, TUPGONE %d.",
NAMEDATALEN, relname, blkno, offnum,
1996-11-27 08:27:20 +01:00
TransactionIdIsValid((TransactionId)htup->t_xmax),
tupgone);
}
/*
* It's possibly! But from where it comes ?
* And should we fix it ? - vadim 11/28/96
*/
itemptr = &(htup->t_ctid);
if ( !ItemPointerIsValid (itemptr) ||
BlockIdGetBlockNumber(&(itemptr->ip_blkid)) != blkno )
{
elog (NOTICE, "Rel %.*s: TID %u/%u: TID IN TUPLEHEADER %u/%u IS NOT THE SAME. TUPGONE %d.",
NAMEDATALEN, relname, blkno, offnum,
BlockIdGetBlockNumber(&(itemptr->ip_blkid)),
itemptr->ip_posid, tupgone);
}
/*
* Other checks...
*/
if ( htup->t_len != itemid->lp_len )
{
elog (NOTICE, "Rel %.*s: TID %u/%u: TUPLE_LEN IN PAGEHEADER %u IS NOT THE SAME AS IN TUPLEHEADER %u. TUPGONE %d.",
NAMEDATALEN, relname, blkno, offnum,
itemid->lp_len, htup->t_len, tupgone);
}
if ( !OidIsValid(htup->t_oid) )
{
elog (NOTICE, "Rel %.*s: TID %u/%u: OID IS INVALID. TUPGONE %d.",
NAMEDATALEN, relname, blkno, offnum, tupgone);
}
if (tupgone) {
1996-11-27 08:27:20 +01:00
ItemId lpp;
if ( tempPage == (Page) NULL )
{
Size pageSize;
pageSize = PageGetPageSize(page);
tempPage = (Page) palloc(pageSize);
memmove (tempPage, page, pageSize);
}
lpp = &(((PageHeader) tempPage)->pd_linp[offnum - 1]);
/* mark it unused */
lpp->lp_flags &= ~LP_USED;
vpc->vpd_voff[vpc->vpd_noff++] = offnum;
1996-11-27 08:27:20 +01:00
nvac++;
} else {
ntups++;
1996-11-27 08:27:20 +01:00
notup = false;
if ( htup->t_len < min_tlen )
min_tlen = htup->t_len;
if ( htup->t_len > max_tlen )
max_tlen = htup->t_len;
vc_attrstats(onerel, vacrelstats, htup);
}
}
if (pgchanged) {
WriteBuffer(buf);
1996-11-27 08:27:20 +01:00
dobufrel = false;
nchpg++;
}
1996-11-27 08:27:20 +01:00
else
dobufrel = true;
if ( tempPage != (Page) NULL )
{ /* Some tuples are gone */
PageRepairFragmentation(tempPage);
vpc->vpd_free = ((PageHeader)tempPage)->pd_upper - ((PageHeader)tempPage)->pd_lower;
frsize += vpc->vpd_free;
1997-02-07 17:24:12 +01:00
vc_reappage (Vvpl, vpc);
1996-11-27 08:27:20 +01:00
pfree (tempPage);
tempPage = (Page) NULL;
}
else if ( vpc->vpd_noff > 0 )
{ /* there are only ~LP_USED line pointers */
vpc->vpd_free = ((PageHeader)page)->pd_upper - ((PageHeader)page)->pd_lower;
frsize += vpc->vpd_free;
1997-02-07 17:24:12 +01:00
vc_reappage (Vvpl, vpc);
1996-11-27 08:27:20 +01:00
}
if ( dobufrel )
ReleaseBuffer(buf);
if ( notup )
nemend++;
else
nemend = 0;
}
1996-11-27 08:27:20 +01:00
pfree (vpc);
/* save stats in the rel list for use later */
1997-02-07 17:24:12 +01:00
vacrelstats->ntups = ntups;
vacrelstats->npages = nblocks;
/* vacrelstats->natts = attr_cnt;*/
if ( ntups == 0 )
min_tlen = max_tlen = 0;
1997-02-07 17:24:12 +01:00
vacrelstats->min_tlen = min_tlen;
vacrelstats->max_tlen = max_tlen;
1996-11-27 08:27:20 +01:00
Vvpl->vpl_nemend = nemend;
Fvpl->vpl_nemend = nemend;
/*
* Try to make Fvpl keeping in mind that we can't use free space
* of "empty" end-pages and last page if it reapped.
*/
if ( Vvpl->vpl_npages - nemend > 0 )
{
int nusf; /* blocks usefull for re-using */
nusf = Vvpl->vpl_npages - nemend;
if ( (Vvpl->vpl_pgdesc[nusf-1])->vpd_blkno == nblocks - nemend - 1 )
nusf--;
for (i = 0; i < nusf; i++)
{
vp = Vvpl->vpl_pgdesc[i];
1997-02-07 17:24:12 +01:00
if ( vc_enough_space (vp, min_tlen) )
1996-11-27 08:27:20 +01:00
{
1997-02-07 17:24:12 +01:00
vc_vpinsert (Fvpl, vp);
1996-11-27 08:27:20 +01:00
frsusf += vp->vpd_free;
}
}
}
getrusage(RUSAGE_SELF, &ru1);
1997-02-07 17:24:12 +01:00
elog (MESSAGE_LEVEL, "Rel %.*s: Pages %u: Changed %u, Reapped %u, Empty %u, New %u; \
1996-11-27 08:27:20 +01:00
Tup %u: Vac %u, Crash %u, UnUsed %u, MinLen %u, MaxLen %u; Re-using: Free/Avail. Space %u/%u; EndEmpty/Avail. Pages %u/%u. Elapsed %u/%u sec.",
NAMEDATALEN, relname,
1996-11-27 08:27:20 +01:00
nblocks, nchpg, Vvpl->vpl_npages, nempg, nnepg,
ntups, nvac, ncrash, nunused, min_tlen, max_tlen,
frsize, frsusf, nemend, Fvpl->vpl_npages,
ru1.ru_stime.tv_sec - ru0.ru_stime.tv_sec,
ru1.ru_utime.tv_sec - ru0.ru_utime.tv_sec);
1997-02-07 17:24:12 +01:00
} /* vc_scanheap */
1996-11-27 08:27:20 +01:00
/*
1997-02-07 17:24:12 +01:00
* vc_rpfheap() -- try to repaire relation' fragmentation
*
1996-11-27 08:27:20 +01:00
* This routine marks dead tuples as unused and tries re-use dead space
* by moving tuples (and inserting indices if needed). It constructs
* Nvpl list of free-ed pages (moved tuples) and clean indices
* for them after committing (in hack-manner - without losing locks
* and freeing memory!) current transaction. It truncates relation
* if some end-blocks are gone away.
*/
static void
1997-02-07 17:24:12 +01:00
vc_rpfheap (VRelStats *vacrelstats, Relation onerel,
1996-11-27 08:27:20 +01:00
VPageList Vvpl, VPageList Fvpl, int nindices, Relation *Irel)
{
1996-11-27 08:27:20 +01:00
TransactionId myXID;
CommandId myCID;
AbsoluteTime myCTM = 0;
1996-11-27 08:27:20 +01:00
Buffer buf, ToBuf;
int nblocks, blkno;
Page page, ToPage = NULL;
OffsetNumber offnum = 0, maxoff = 0, newoff, moff;
1996-11-27 08:27:20 +01:00
ItemId itemid, newitemid;
HeapTuple htup, newtup;
TupleDesc tupdesc = NULL;
Datum *idatum = NULL;
char *inulls = NULL;
1996-11-27 08:27:20 +01:00
InsertIndexResult iresult;
VPageListData Nvpl;
VPageDescr ToVpd = NULL, Fvplast, Vvplast, vpc, *vpp;
int ToVpI = 0;
1996-11-27 08:27:20 +01:00
IndDesc *Idesc, *idcur;
int Fblklast, Vblklast, i;
Size tlen;
int nmoved, Fnpages, Vnpages;
int nchkmvd, ntups;
bool isempty, dowrite;
Relation archrel;
struct rusage ru0, ru1;
1996-11-27 08:27:20 +01:00
getrusage(RUSAGE_SELF, &ru0);
1996-11-27 08:27:20 +01:00
myXID = GetCurrentTransactionId();
myCID = GetCurrentCommandId();
if ( Irel != (Relation*) NULL ) /* preparation for index' inserts */
{
1997-02-07 17:24:12 +01:00
vc_mkindesc (onerel, nindices, Irel, &Idesc);
1996-11-27 08:27:20 +01:00
tupdesc = RelationGetTupleDescriptor(onerel);
idatum = (Datum *) palloc(INDEX_MAX_KEYS * sizeof (*idatum));
inulls = (char *) palloc(INDEX_MAX_KEYS * sizeof (*inulls));
}
1996-11-27 08:27:20 +01:00
/* if the relation has an archive, open it */
if (onerel->rd_rel->relarch != 'n')
{
1997-02-07 17:24:12 +01:00
archrel = vc_getarchrel(onerel);
1996-11-27 08:27:20 +01:00
/* Archive tuples from "empty" end-pages */
for ( vpp = Vvpl->vpl_pgdesc + Vvpl->vpl_npages - 1,
i = Vvpl->vpl_nemend; i > 0; i--, vpp-- )
{
if ( (*vpp)->vpd_noff > 0 )
{
buf = ReadBuffer(onerel, (*vpp)->vpd_blkno);
page = BufferGetPage(buf);
Assert ( !PageIsEmpty(page) );
1997-02-07 17:24:12 +01:00
vc_vacpage (page, *vpp, archrel);
1996-11-27 08:27:20 +01:00
WriteBuffer (buf);
}
}
}
else
archrel = (Relation) NULL;
Nvpl.vpl_npages = 0;
Fnpages = Fvpl->vpl_npages;
Fvplast = Fvpl->vpl_pgdesc[Fnpages - 1];
Fblklast = Fvplast->vpd_blkno;
Assert ( Vvpl->vpl_npages > Vvpl->vpl_nemend );
Vnpages = Vvpl->vpl_npages - Vvpl->vpl_nemend;
Vvplast = Vvpl->vpl_pgdesc[Vnpages - 1];
Vblklast = Vvplast->vpd_blkno;
Assert ( Vblklast >= Fblklast );
ToBuf = InvalidBuffer;
nmoved = 0;
1996-11-27 08:27:20 +01:00
vpc = (VPageDescr) palloc (sizeof(VPageDescrData) + MaxOffsetNumber*sizeof(OffsetNumber));
vpc->vpd_nusd = vpc->vpd_noff = 0;
1996-11-27 08:27:20 +01:00
1997-02-07 17:24:12 +01:00
nblocks = vacrelstats->npages;
1996-11-27 08:27:20 +01:00
for (blkno = nblocks - Vvpl->vpl_nemend - 1; ; blkno--)
{
/* if it's reapped page and it was used by me - quit */
if ( blkno == Fblklast && Fvplast->vpd_nusd > 0 )
break;
1996-11-27 08:27:20 +01:00
buf = ReadBuffer(onerel, blkno);
page = BufferGetPage(buf);
1996-11-27 08:27:20 +01:00
vpc->vpd_noff = 0;
isempty = PageIsEmpty(page);
dowrite = false;
1996-11-27 08:27:20 +01:00
if ( blkno == Vblklast ) /* it's reapped page */
{
if ( Vvplast->vpd_noff > 0 ) /* there are dead tuples */
{ /* on this page - clean */
Assert ( ! isempty );
1997-02-07 17:24:12 +01:00
vc_vacpage (page, Vvplast, archrel);
1996-11-27 08:27:20 +01:00
dowrite = true;
}
else
{
1996-11-27 08:27:20 +01:00
Assert ( isempty );
}
--Vnpages;
Assert ( Vnpages > 0 );
1996-11-27 08:27:20 +01:00
/* get prev reapped page from Vvpl */
Vvplast = Vvpl->vpl_pgdesc[Vnpages - 1];
Vblklast = Vvplast->vpd_blkno;
if ( blkno == Fblklast ) /* this page in Fvpl too */
{
--Fnpages;
Assert ( Fnpages > 0 );
1996-11-27 08:27:20 +01:00
Assert ( Fvplast->vpd_nusd == 0 );
/* get prev reapped page from Fvpl */
Fvplast = Fvpl->vpl_pgdesc[Fnpages - 1];
Fblklast = Fvplast->vpd_blkno;
}
Assert ( Fblklast <= Vblklast );
if ( isempty )
{
ReleaseBuffer(buf);
continue;
}
}
else
{
Assert ( ! isempty );
}
vpc->vpd_blkno = blkno;
maxoff = PageGetMaxOffsetNumber(page);
for (offnum = FirstOffsetNumber;
offnum <= maxoff;
offnum = OffsetNumberNext(offnum))
{
itemid = PageGetItemId(page, offnum);
if (!ItemIdIsUsed(itemid))
continue;
htup = (HeapTuple) PageGetItem(page, itemid);
tlen = htup->t_len;
/* try to find new page for this tuple */
if ( ToBuf == InvalidBuffer ||
1997-02-07 17:24:12 +01:00
! vc_enough_space (ToVpd, tlen) )
1996-11-27 08:27:20 +01:00
{
if ( ToBuf != InvalidBuffer )
{
1996-11-27 08:27:20 +01:00
WriteBuffer(ToBuf);
ToBuf = InvalidBuffer;
/*
* If no one tuple can't be added to this page -
* remove page from Fvpl. - vadim 11/27/96
*/
1997-02-07 17:24:12 +01:00
if ( !vc_enough_space (ToVpd, vacrelstats->min_tlen) )
{
if ( ToVpd != Fvplast )
{
Assert ( Fnpages > ToVpI + 1 );
memmove (Fvpl->vpl_pgdesc + ToVpI,
Fvpl->vpl_pgdesc + ToVpI + 1,
sizeof (VPageDescr*) * (Fnpages - ToVpI - 1));
}
Assert ( Fnpages >= 1 );
Fnpages--;
if ( Fnpages == 0 )
break;
/* get prev reapped page from Fvpl */
Fvplast = Fvpl->vpl_pgdesc[Fnpages - 1];
Fblklast = Fvplast->vpd_blkno;
}
}
1996-11-27 08:27:20 +01:00
for (i=0; i < Fnpages; i++)
{
1997-02-07 17:24:12 +01:00
if ( vc_enough_space (Fvpl->vpl_pgdesc[i], tlen) )
1996-11-27 08:27:20 +01:00
break;
}
if ( i == Fnpages )
break; /* can't move item anywhere */
ToVpI = i;
ToVpd = Fvpl->vpl_pgdesc[ToVpI];
1996-11-27 08:27:20 +01:00
ToBuf = ReadBuffer(onerel, ToVpd->vpd_blkno);
ToPage = BufferGetPage(ToBuf);
/* if this page was not used before - clean it */
if ( ! PageIsEmpty(ToPage) && ToVpd->vpd_nusd == 0 )
1997-02-07 17:24:12 +01:00
vc_vacpage (ToPage, ToVpd, archrel);
1996-11-27 08:27:20 +01:00
}
/* copy tuple */
newtup = (HeapTuple) palloc (tlen);
memmove((char *) newtup, (char *) htup, tlen);
/* store transaction information */
TransactionIdStore(myXID, &(newtup->t_xmin));
newtup->t_cmin = myCID;
StoreInvalidTransactionId(&(newtup->t_xmax));
newtup->t_tmin = INVALID_ABSTIME;
newtup->t_tmax = CURRENT_ABSTIME;
ItemPointerSetInvalid(&newtup->t_chain);
/* add tuple to the page */
newoff = PageAddItem (ToPage, (Item)newtup, tlen,
InvalidOffsetNumber, LP_USED);
if ( newoff == InvalidOffsetNumber )
{
elog (WARN, "\
failed to add item with len = %u to page %u (free space %u, nusd %u, noff %u)",
tlen, ToVpd->vpd_blkno, ToVpd->vpd_free,
ToVpd->vpd_nusd, ToVpd->vpd_noff);
}
newitemid = PageGetItemId(ToPage, newoff);
pfree (newtup);
newtup = (HeapTuple) PageGetItem(ToPage, newitemid);
ItemPointerSet(&(newtup->t_ctid), ToVpd->vpd_blkno, newoff);
/* now logically delete end-tuple */
TransactionIdStore(myXID, &(htup->t_xmax));
htup->t_cmax = myCID;
memmove ((char*)&(htup->t_chain), (char*)&(newtup->t_ctid), sizeof (newtup->t_ctid));
ToVpd->vpd_nusd++;
nmoved++;
ToVpd->vpd_free = ((PageHeader)ToPage)->pd_upper - ((PageHeader)ToPage)->pd_lower;
vpc->vpd_voff[vpc->vpd_noff++] = offnum;
/* insert index' tuples if needed */
if ( Irel != (Relation*) NULL )
{
for (i = 0, idcur = Idesc; i < nindices; i++, idcur++)
{
FormIndexDatum (
idcur->natts,
(AttrNumber *)&(idcur->tform->indkey[0]),
newtup,
tupdesc,
InvalidBuffer,
idatum,
inulls,
idcur->finfoP);
iresult = index_insert (
Irel[i],
idatum,
inulls,
&(newtup->t_ctid),
onerel);
1996-11-27 08:27:20 +01:00
if (iresult) pfree(iresult);
}
}
} /* walk along page */
if ( vpc->vpd_noff > 0 ) /* some tuples were moved */
{
1997-02-07 17:24:12 +01:00
vc_reappage (&Nvpl, vpc);
1996-11-27 08:27:20 +01:00
WriteBuffer(buf);
}
else if ( dowrite )
WriteBuffer(buf);
else
ReleaseBuffer(buf);
if ( offnum <= maxoff )
break; /* some item(s) left */
} /* walk along relation */
blkno++; /* new number of blocks */
if ( ToBuf != InvalidBuffer )
{
Assert (nmoved > 0);
WriteBuffer(ToBuf);
}
1996-11-27 08:27:20 +01:00
if ( nmoved > 0 )
{
/*
* We have to commit our tuple' movings before we'll truncate
* relation, but we shouldn't lose our locks. And so - quick hack:
* flush buffers and record status of current transaction
* as committed, and continue. - vadim 11/13/96
*/
FlushBufferPool(!TransactionFlushEnabled());
TransactionIdCommit(myXID);
FlushBufferPool(!TransactionFlushEnabled());
myCTM = TransactionIdGetCommitTime(myXID);
}
/*
* Clean uncleaned reapped pages from Vvpl list
* and set commit' times for inserted tuples
*/
nchkmvd = 0;
for (i = 0, vpp = Vvpl->vpl_pgdesc; i < Vnpages; i++, vpp++)
{
Assert ( (*vpp)->vpd_blkno < blkno );
buf = ReadBuffer(onerel, (*vpp)->vpd_blkno);
page = BufferGetPage(buf);
if ( (*vpp)->vpd_nusd == 0 ) /* this page was not used */
{
/* noff == 0 in empty pages only - such pages should be re-used */
Assert ( (*vpp)->vpd_noff > 0 );
1997-02-07 17:24:12 +01:00
vc_vacpage (page, *vpp, archrel);
1996-11-27 08:27:20 +01:00
}
else /* this page was used */
{
ntups = 0;
moff = PageGetMaxOffsetNumber(page);
for (newoff = FirstOffsetNumber;
newoff <= moff;
newoff = OffsetNumberNext(newoff))
{
itemid = PageGetItemId(page, newoff);
if (!ItemIdIsUsed(itemid))
continue;
htup = (HeapTuple) PageGetItem(page, itemid);
if ( TransactionIdEquals((TransactionId)htup->t_xmin, myXID) )
{
htup->t_tmin = myCTM;
ntups++;
}
}
Assert ( (*vpp)->vpd_nusd == ntups );
nchkmvd += ntups;
}
WriteBuffer (buf);
}
Assert ( nmoved == nchkmvd );
1996-11-27 08:27:20 +01:00
getrusage(RUSAGE_SELF, &ru1);
1997-02-07 17:24:12 +01:00
elog (MESSAGE_LEVEL, "Rel %.*s: Pages: %u --> %u; Tuple(s) moved: %u. \
1996-11-27 08:27:20 +01:00
Elapsed %u/%u sec.",
NAMEDATALEN, (RelationGetRelationName(onerel))->data,
nblocks, blkno, nmoved,
ru1.ru_stime.tv_sec - ru0.ru_stime.tv_sec,
ru1.ru_utime.tv_sec - ru0.ru_utime.tv_sec);
if ( Nvpl.vpl_npages > 0 )
{
/* vacuum indices again if needed */
if ( Irel != (Relation*) NULL )
{
VPageDescr *vpleft, *vpright, vpsave;
/* re-sort Nvpl.vpl_pgdesc */
for (vpleft = Nvpl.vpl_pgdesc,
vpright = Nvpl.vpl_pgdesc + Nvpl.vpl_npages - 1;
vpleft < vpright; vpleft++, vpright--)
{
vpsave = *vpleft; *vpleft = *vpright; *vpright = vpsave;
}
for (i = 0; i < nindices; i++)
1997-02-07 17:24:12 +01:00
vc_vaconeind (&Nvpl, Irel[i], vacrelstats->ntups);
1996-11-27 08:27:20 +01:00
}
/*
* clean moved tuples from last page in Nvpl list
* if some tuples left there
*/
if ( vpc->vpd_noff > 0 && offnum <= maxoff )
{
Assert (vpc->vpd_blkno == blkno - 1);
buf = ReadBuffer(onerel, vpc->vpd_blkno);
page = BufferGetPage (buf);
ntups = 0;
maxoff = offnum;
for (offnum = FirstOffsetNumber;
offnum < maxoff;
offnum = OffsetNumberNext(offnum))
{
itemid = PageGetItemId(page, offnum);
if (!ItemIdIsUsed(itemid))
continue;
htup = (HeapTuple) PageGetItem(page, itemid);
Assert ( TransactionIdEquals((TransactionId)htup->t_xmax, myXID) );
itemid->lp_flags &= ~LP_USED;
ntups++;
}
Assert ( vpc->vpd_noff == ntups );
PageRepairFragmentation(page);
WriteBuffer (buf);
}
/* now - free new list of reapped pages */
vpp = Nvpl.vpl_pgdesc;
for (i = 0; i < Nvpl.vpl_npages; i++, vpp++)
pfree(*vpp);
pfree (Nvpl.vpl_pgdesc);
}
/* truncate relation */
if ( blkno < nblocks )
{
blkno = smgrtruncate (onerel->rd_rel->relsmgr, onerel, blkno);
Assert ( blkno >= 0 );
1997-02-07 17:24:12 +01:00
vacrelstats->npages = blkno; /* set new number of blocks */
1996-11-27 08:27:20 +01:00
}
if ( archrel != (Relation) NULL )
heap_close(archrel);
if ( Irel != (Relation*) NULL ) /* pfree index' allocations */
{
pfree (Idesc);
pfree (idatum);
pfree (inulls);
1997-02-07 17:24:12 +01:00
vc_clsindices (nindices, Irel);
1996-11-27 08:27:20 +01:00
}
pfree (vpc);
1997-02-07 17:24:12 +01:00
} /* vc_rpfheap */
1996-11-27 08:27:20 +01:00
/*
1997-02-07 17:24:12 +01:00
* vc_vacheap() -- free dead tuples
1996-11-27 08:27:20 +01:00
*
* This routine marks dead tuples as unused and truncates relation
* if there are "empty" end-blocks.
*/
static void
1997-02-07 17:24:12 +01:00
vc_vacheap (VRelStats *vacrelstats, Relation onerel, VPageList Vvpl)
1996-11-27 08:27:20 +01:00
{
Buffer buf;
Page page;
VPageDescr *vpp;
Relation archrel;
int nblocks;
int i;
nblocks = Vvpl->vpl_npages;
/* if the relation has an archive, open it */
if (onerel->rd_rel->relarch != 'n')
1997-02-07 17:24:12 +01:00
archrel = vc_getarchrel(onerel);
else
1996-11-27 08:27:20 +01:00
{
archrel = (Relation) NULL;
nblocks -= Vvpl->vpl_nemend; /* nothing to do with them */
}
for (i = 0, vpp = Vvpl->vpl_pgdesc; i < nblocks; i++, vpp++)
{
if ( (*vpp)->vpd_noff > 0 )
{
buf = ReadBuffer(onerel, (*vpp)->vpd_blkno);
page = BufferGetPage (buf);
1997-02-07 17:24:12 +01:00
vc_vacpage (page, *vpp, archrel);
1996-11-27 08:27:20 +01:00
WriteBuffer (buf);
}
}
/* truncate relation if there are some empty end-pages */
if ( Vvpl->vpl_nemend > 0 )
{
1997-02-07 17:24:12 +01:00
Assert ( vacrelstats->npages >= Vvpl->vpl_nemend );
nblocks = vacrelstats->npages - Vvpl->vpl_nemend;
elog (MESSAGE_LEVEL, "Rel %.*s: Pages: %u --> %u.",
1996-11-27 08:27:20 +01:00
NAMEDATALEN, (RelationGetRelationName(onerel))->data,
1997-02-07 17:24:12 +01:00
vacrelstats->npages, nblocks);
1996-11-27 08:27:20 +01:00
/*
* we have to flush "empty" end-pages (if changed, but who knows it)
* before truncation
*/
FlushBufferPool(!TransactionFlushEnabled());
nblocks = smgrtruncate (onerel->rd_rel->relsmgr, onerel, nblocks);
Assert ( nblocks >= 0 );
1997-02-07 17:24:12 +01:00
vacrelstats->npages = nblocks; /* set new number of blocks */
1996-11-27 08:27:20 +01:00
}
if ( archrel != (Relation) NULL )
heap_close(archrel);
1997-02-07 17:24:12 +01:00
} /* vc_vacheap */
1996-11-27 08:27:20 +01:00
/*
1997-02-07 17:24:12 +01:00
* vc_vacpage() -- free (and archive if needed) dead tuples on a page
1996-11-27 08:27:20 +01:00
* and repaire its fragmentation.
*/
static void
1997-02-07 17:24:12 +01:00
vc_vacpage (Page page, VPageDescr vpd, Relation archrel)
1996-11-27 08:27:20 +01:00
{
ItemId itemid;
HeapTuple htup;
int i;
Assert ( vpd->vpd_nusd == 0 );
for (i=0; i < vpd->vpd_noff; i++)
{
itemid = &(((PageHeader) page)->pd_linp[vpd->vpd_voff[i] - 1]);
if ( archrel != (Relation) NULL && ItemIdIsUsed(itemid) )
{
htup = (HeapTuple) PageGetItem (page, itemid);
1997-02-07 17:24:12 +01:00
vc_archive (archrel, htup);
1996-11-27 08:27:20 +01:00
}
itemid->lp_flags &= ~LP_USED;
}
PageRepairFragmentation(page);
1997-02-07 17:24:12 +01:00
} /* vc_vacpage */
/*
* _vc_scanoneind() -- scan one index relation to update statistic.
*
*/
static void
1997-02-07 17:24:12 +01:00
vc_scanoneind (Relation indrel, int nhtups)
{
RetrieveIndexResult res;
IndexScanDesc iscan;
int nitups;
int nipages;
struct rusage ru0, ru1;
getrusage(RUSAGE_SELF, &ru0);
/* walk through the entire index */
iscan = index_beginscan(indrel, false, 0, (ScanKey) NULL);
nitups = 0;
while ((res = index_getnext(iscan, ForwardScanDirection))
!= (RetrieveIndexResult) NULL)
{
nitups++;
pfree(res);
}
index_endscan(iscan);
/* now update statistics in pg_class */
nipages = RelationGetNumberOfBlocks(indrel);
1997-02-07 17:24:12 +01:00
vc_updstats(indrel->rd_id, nipages, nitups, false, NULL);
getrusage(RUSAGE_SELF, &ru1);
1997-02-07 17:24:12 +01:00
elog (MESSAGE_LEVEL, "Ind %.*s: Pages %u; Tuples %u. Elapsed %u/%u sec.",
NAMEDATALEN, indrel->rd_rel->relname.data, nipages, nitups,
ru1.ru_stime.tv_sec - ru0.ru_stime.tv_sec,
ru1.ru_utime.tv_sec - ru0.ru_utime.tv_sec);
if ( nitups != nhtups )
elog (NOTICE, "Ind %.*s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u)",
NAMEDATALEN, indrel->rd_rel->relname.data, nitups, nhtups);
1997-02-07 17:24:12 +01:00
} /* vc_scanoneind */
/*
1997-02-07 17:24:12 +01:00
* vc_vaconeind() -- vacuum one index relation.
*
1996-11-27 08:27:20 +01:00
* Vpl is the VPageList of the heap we're currently vacuuming.
* It's locked. Indrel is an index relation on the vacuumed heap.
* We don't set locks on the index relation here, since the indexed
* access methods support locking at different granularities.
* We let them handle it.
*
* Finally, we arrange to update the index relation's statistics in
* pg_class.
*/
static void
1997-02-07 17:24:12 +01:00
vc_vaconeind(VPageList vpl, Relation indrel, int nhtups)
{
RetrieveIndexResult res;
IndexScanDesc iscan;
ItemPointer heapptr;
int nvac;
int nitups;
int nipages;
1996-11-27 08:27:20 +01:00
VPageDescr vp;
struct rusage ru0, ru1;
getrusage(RUSAGE_SELF, &ru0);
/* walk through the entire index */
iscan = index_beginscan(indrel, false, 0, (ScanKey) NULL);
nvac = 0;
nitups = 0;
while ((res = index_getnext(iscan, ForwardScanDirection))
!= (RetrieveIndexResult) NULL) {
heapptr = &res->heap_iptr;
1997-02-07 17:24:12 +01:00
if ( (vp = vc_tidreapped (heapptr, vpl)) != (VPageDescr) NULL)
1996-11-27 08:27:20 +01:00
{
#if 0
elog(DEBUG, "<%x,%x> -> <%x,%x>",
ItemPointerGetBlockNumber(&(res->index_iptr)),
ItemPointerGetOffsetNumber(&(res->index_iptr)),
ItemPointerGetBlockNumber(&(res->heap_iptr)),
ItemPointerGetOffsetNumber(&(res->heap_iptr)));
#endif
1996-11-27 08:27:20 +01:00
if ( vp->vpd_noff == 0 )
{ /* this is EmptyPage !!! */
elog (NOTICE, "Ind %.*s: pointer to EmptyPage (blk %u off %u) - fixing",
NAMEDATALEN, indrel->rd_rel->relname.data,
vp->vpd_blkno, ItemPointerGetOffsetNumber(heapptr));
}
++nvac;
index_delete(indrel, &res->index_iptr);
} else {
nitups++;
}
/* be tidy */
pfree(res);
}
index_endscan(iscan);
/* now update statistics in pg_class */
nipages = RelationGetNumberOfBlocks(indrel);
1997-02-07 17:24:12 +01:00
vc_updstats(indrel->rd_id, nipages, nitups, false, NULL);
getrusage(RUSAGE_SELF, &ru1);
1997-02-07 17:24:12 +01:00
elog (MESSAGE_LEVEL, "Ind %.*s: Pages %u; Tuples %u: Deleted %u. Elapsed %u/%u sec.",
NAMEDATALEN, indrel->rd_rel->relname.data, nipages, nitups, nvac,
ru1.ru_stime.tv_sec - ru0.ru_stime.tv_sec,
ru1.ru_utime.tv_sec - ru0.ru_utime.tv_sec);
1996-11-27 08:27:20 +01:00
if ( nitups != nhtups )
elog (NOTICE, "Ind %.*s: NUMBER OF INDEX' TUPLES (%u) IS NOT THE SAME AS HEAP' (%u)",
NAMEDATALEN, indrel->rd_rel->relname.data, nitups, nhtups);
1996-11-27 08:27:20 +01:00
1997-02-07 17:24:12 +01:00
} /* vc_vaconeind */
1996-11-27 08:27:20 +01:00
/*
1997-02-07 17:24:12 +01:00
* vc_tidreapped() -- is a particular tid reapped?
1996-11-27 08:27:20 +01:00
*
* vpl->VPageDescr_array is sorted in right order.
*/
static VPageDescr
1997-02-07 17:24:12 +01:00
vc_tidreapped(ItemPointer itemptr, VPageList vpl)
1996-11-27 08:27:20 +01:00
{
OffsetNumber ioffno;
OffsetNumber *voff;
VPageDescr vp, *vpp;
VPageDescrData vpd;
vpd.vpd_blkno = ItemPointerGetBlockNumber(itemptr);
ioffno = ItemPointerGetOffsetNumber(itemptr);
vp = &vpd;
1997-02-07 17:24:12 +01:00
vpp = (VPageDescr*) vc_find_eq ((char*)(vpl->vpl_pgdesc),
1996-11-27 08:27:20 +01:00
vpl->vpl_npages, sizeof (VPageDescr), (char*)&vp,
1997-02-07 17:24:12 +01:00
vc_cmp_blk);
1996-11-27 08:27:20 +01:00
if ( vpp == (VPageDescr*) NULL )
return ((VPageDescr)NULL);
vp = *vpp;
/* ok - we are on true page */
if ( vp->vpd_noff == 0 ) { /* this is EmptyPage !!! */
return (vp);
}
1997-02-07 17:24:12 +01:00
voff = (OffsetNumber*) vc_find_eq ((char*)(vp->vpd_voff),
1996-11-27 08:27:20 +01:00
vp->vpd_noff, sizeof (OffsetNumber), (char*)&ioffno,
1997-02-07 17:24:12 +01:00
vc_cmp_offno);
1996-11-27 08:27:20 +01:00
if ( voff == (OffsetNumber*) NULL )
return ((VPageDescr)NULL);
return (vp);
1997-02-07 17:24:12 +01:00
} /* vc_tidreapped */
/*
* vc_attrstats() -- compute column statistics used by the optimzer
*
* We compute the column min, max, null and non-null counts.
* Plus we attempt to find the count of the value that occurs most
* frequently in each column
* These figures are used to compute the selectivity of the column
*
* We use a three-bucked cache to get the most frequent item
* The 'guess' buckets count hits. A cache miss causes guess1
* to get the most hit 'guess' item in the most recent cycle, and
* the new item goes into guess2. Whenever the total count of hits
* of a 'guess' entry is larger than 'best', 'guess' becomes 'best'.
*
* This method works perfectly for columns with unique values, and columns
* with only two unique values, plus nulls.
*
* It becomes less perfect as the number of unique values increases and
* their distribution in the table becomes more random.
*
*/
static void
vc_attrstats(Relation onerel, VRelStats *vacrelstats, HeapTuple htup)
1997-02-07 17:24:12 +01:00
{
int i, attr_cnt = vacrelstats->va_natts;
VacAttrStats *vacattrstats = vacrelstats->vacattrstats;
TupleDesc tupDesc = onerel->rd_att;
1997-02-07 17:24:12 +01:00
Datum value;
bool isnull;
for (i = 0; i < attr_cnt; i++) {
VacAttrStats *stats = &vacattrstats[i];
bool value_hit = true;
value = (Datum) heap_getattr (htup, InvalidBuffer,
stats->attr->attnum, tupDesc, &isnull);
1997-02-07 17:24:12 +01:00
if (!VacAttrStatsEqValid(stats))
continue;
if (isnull)
stats->null_cnt++;
else {
stats->nonnull_cnt++;
if (stats->initialized == false) {
vc_bucketcpy(stats->attr, value, &stats->best, &stats->best_len);
/* best_cnt gets incremented later */
vc_bucketcpy(stats->attr, value, &stats->guess1, &stats->guess1_len);
stats->guess1_cnt = stats->guess1_hits = 1;
vc_bucketcpy(stats->attr, value, &stats->guess2, &stats->guess2_len);
stats->guess2_hits = 1;
if (VacAttrStatsLtGtValid(stats)) {
vc_bucketcpy(stats->attr, value, &stats->max , &stats->max_len);
vc_bucketcpy(stats->attr, value, &stats->min, &stats->min_len);
}
stats->initialized = true;
}
1997-03-10 16:08:57 +01:00
if (VacAttrStatsLtGtValid(stats)) {
if ( (*(stats->f_cmplt)) (value,stats->min) ) {
1997-03-10 00:29:15 +01:00
vc_bucketcpy(stats->attr, value, &stats->min, &stats->min_len);
stats->min_cnt = 0;
}
if ( (*(stats->f_cmpgt)) (value,stats->max) ) {
1997-03-10 00:29:15 +01:00
vc_bucketcpy(stats->attr, value, &stats->max, &stats->max_len);
stats->max_cnt = 0;
}
if ( (*(stats->f_cmpeq)) (value,stats->min) )
1997-03-10 00:29:15 +01:00
stats->min_cnt++;
else if ( (*(stats->f_cmpeq)) (value,stats->max) )
1997-03-10 00:29:15 +01:00
stats->max_cnt++;
1997-02-07 17:24:12 +01:00
}
if ( (*(stats->f_cmpeq)) (value,stats->best) )
stats->best_cnt++;
else if ( (*(stats->f_cmpeq)) (value,stats->guess1) ) {
1997-02-07 17:24:12 +01:00
stats->guess1_cnt++;
stats->guess1_hits++;
1997-02-07 17:24:12 +01:00
}
else if ( (*(stats->f_cmpeq)) (value,stats->guess2) )
1997-02-07 17:24:12 +01:00
stats->guess2_hits++;
else value_hit = false;
if (stats->guess2_hits > stats->guess1_hits) {
swapDatum(stats->guess1,stats->guess2);
swapInt(stats->guess1_len,stats->guess2_len);
stats->guess1_cnt = stats->guess2_hits;
swapLong(stats->guess1_hits, stats->guess2_hits);
}
if (stats->guess1_cnt > stats->best_cnt) {
swapDatum(stats->best,stats->guess1);
1997-03-09 08:12:36 +01:00
swapInt(stats->best_len,stats->guess1_len);
1997-02-07 17:24:12 +01:00
swapLong(stats->best_cnt,stats->guess1_cnt);
stats->guess1_hits = 1;
stats->guess2_hits = 1;
1997-02-07 17:24:12 +01:00
}
if (!value_hit) {
vc_bucketcpy(stats->attr, value, &stats->guess2, &stats->guess2_len);
stats->guess1_hits = 1;
stats->guess2_hits = 1;
1997-02-07 17:24:12 +01:00
}
}
}
return;
}
/*
* vc_bucketcpy() -- update pg_class statistics for one relation
*
*/
static void
vc_bucketcpy(AttributeTupleForm attr, Datum value, Datum *bucket, int16 *bucket_len)
{
if (attr->attbyval && attr->attlen != -1)
*bucket = value;
else {
int len = (attr->attlen != -1 ? attr->attlen : VARSIZE(value));
1997-03-07 01:59:05 +01:00
if (len > *bucket_len)
1997-02-07 17:24:12 +01:00
{
1997-03-07 01:59:05 +01:00
if (*bucket_len != 0)
1997-02-07 17:24:12 +01:00
pfree(DatumGetPointer(*bucket));
1997-03-07 01:59:05 +01:00
*bucket = PointerGetDatum(palloc(len));
*bucket_len = len;
1997-02-07 17:24:12 +01:00
}
1997-03-07 01:59:05 +01:00
memmove(DatumGetPointer(*bucket), DatumGetPointer(value), len);
1997-02-07 17:24:12 +01:00
}
}
/*
1997-02-07 17:24:12 +01:00
* vc_updstats() -- update pg_class statistics for one relation
*
* This routine works for both index and heap relation entries in
* pg_class. We violate no-overwrite semantics here by storing new
1997-02-07 17:24:12 +01:00
* values for ntups, npages, and hasindex directly in the pg_class
* tuple that's already on the page. The reason for this is that if
* we updated these tuples in the usual way, then every tuple in pg_class
* would be replaced every day. This would make planning and executing
* historical queries very expensive.
*/
static void
vc_updstats(Oid relid, int npages, int ntups, bool hasindex, VRelStats *vacrelstats)
{
1997-02-07 17:24:12 +01:00
Relation rd, ad, sd;
HeapScanDesc rsdesc, asdesc;
TupleDesc sdesc;
HeapTuple rtup, atup, stup;
Buffer rbuf, abuf;
Form_pg_class pgcform;
1997-02-07 17:24:12 +01:00
ScanKeyData rskey, askey;
AttributeTupleForm attp;
/*
* update number of tuples and number of pages in pg_class
*/
1997-02-07 17:24:12 +01:00
ScanKeyEntryInitialize(&rskey, 0x0, ObjectIdAttributeNumber,
ObjectIdEqualRegProcedure,
ObjectIdGetDatum(relid));
rd = heap_openr(RelationRelationName);
1997-02-07 17:24:12 +01:00
rsdesc = heap_beginscan(rd, false, NowTimeQual, 1, &rskey);
1997-02-07 17:24:12 +01:00
if (!HeapTupleIsValid(rtup = heap_getnext(rsdesc, 0, &rbuf)))
elog(WARN, "pg_class entry for relid %d vanished during vacuuming",
relid);
/* overwrite the existing statistics in the tuple */
1997-02-07 17:24:12 +01:00
vc_setpagelock(rd, BufferGetBlockNumber(rbuf));
pgcform = (Form_pg_class) GETSTRUCT(rtup);
pgcform->reltuples = ntups;
pgcform->relpages = npages;
pgcform->relhasindex = hasindex;
1997-02-07 17:24:12 +01:00
if ( vacrelstats != NULL && vacrelstats->va_natts > 0 )
1997-02-07 17:24:12 +01:00
{
VacAttrStats *vacattrstats = vacrelstats->vacattrstats;
int natts = vacrelstats->va_natts;
1997-02-07 17:24:12 +01:00
ad = heap_openr(AttributeRelationName);
sd = heap_openr(StatisticRelationName);
ScanKeyEntryInitialize(&askey, 0, Anum_pg_attribute_attrelid,
F_INT4EQ, relid);
asdesc = heap_beginscan(ad, false, NowTimeQual, 1, &askey);
while (HeapTupleIsValid(atup = heap_getnext(asdesc, 0, &abuf)))
{
int i;
1997-02-07 17:24:12 +01:00
double selratio; /* average ratio of rows selected for a random constant */
VacAttrStats *stats;
Datum values[ Natts_pg_statistic ];
char nulls[ Natts_pg_statistic ];
attp = (AttributeTupleForm) GETSTRUCT(atup);
if ( attp->attnum <= 0) /* skip system attributes for now, */
/* they are unique anyway */
continue;
for (i = 0; i < natts; i++)
{
if ( attp->attnum == vacattrstats[i].attr->attnum )
break;
}
if ( i >= natts )
continue;
stats = &(vacattrstats[i]);
1997-02-07 17:24:12 +01:00
/* overwrite the existing statistics in the tuple */
if (VacAttrStatsEqValid(stats)) {
vc_setpagelock(ad, BufferGetBlockNumber(abuf));
if (stats->nonnull_cnt + stats->null_cnt == 0 ||
(stats->null_cnt <= 1 && stats->best_cnt == 1))
selratio = 0;
else if (VacAttrStatsLtGtValid(stats) && stats->min_cnt + stats->max_cnt == stats->nonnull_cnt)
{
double min_cnt_d = stats->min_cnt,
max_cnt_d = stats->max_cnt,
null_cnt_d = stats->null_cnt,
nonnullcnt_d = stats->nonnull_cnt; /* prevent overflow */
selratio = (min_cnt_d*min_cnt_d+max_cnt_d*max_cnt_d+null_cnt_d*null_cnt_d)/
(nonnullcnt_d+null_cnt_d)/(nonnullcnt_d+null_cnt_d);
}
else {
double most = (double)(stats->best_cnt > stats->null_cnt ? stats->best_cnt : stats->null_cnt);
double total = ((double)stats->nonnull_cnt)+((double)stats->null_cnt);
/* we assume count of other values are 20%
of best count in table */
selratio = (most*most + 0.20*most*(total-most))/total/total;
}
if (selratio > 1.0)
selratio = 1.0;
attp->attnvals = (selratio ? (selratio * ATTNVALS_SCALE) : 0);
WriteNoReleaseBuffer(abuf);
/* DO PG_STATISTIC INSERTS */
/* doing system relations, especially pg_statistic is a problem */
if (VacAttrStatsLtGtValid(stats) && stats->initialized /* &&
!IsSystemRelationName(pgcform->relname.data)*/) {
func_ptr out_function;
char *out_string;
int dummy;
for (i = 0; i < Natts_pg_statistic; ++i) nulls[i] = ' ';
/* ----------------
* initialize values[]
* ----------------
*/
i = 0;
values[i++] = (Datum) relid; /* 1 */
values[i++] = (Datum) attp->attnum; /* 2 */
values[i++] = (Datum) InvalidOid; /* 3 */
fmgr_info(stats->outfunc, &out_function, &dummy);
out_string = (*out_function)(stats->min, stats->attr->atttypid);
values[i++] = (Datum) fmgr(TextInRegProcedure,out_string);
pfree(out_string);
out_string = (char *)(*out_function)(stats->max, stats->attr->atttypid);
values[i++] = (Datum) fmgr(TextInRegProcedure,out_string);
pfree(out_string);
sdesc = sd->rd_att;
stup = heap_formtuple(sdesc, values, nulls);
/* ----------------
* insert the tuple in the relation and get the tuple's oid.
* ----------------
*/
heap_insert(sd, stup);
pfree(DatumGetPointer(values[3]));
pfree(DatumGetPointer(values[4]));
pfree(stup);
}
}
}
heap_endscan(asdesc);
heap_close(ad);
heap_close(sd);
}
/* XXX -- after write, should invalidate relcache in other backends */
1997-02-07 17:24:12 +01:00
WriteNoReleaseBuffer(rbuf); /* heap_endscan release scan' buffers ? */
/* invalidating system relations confuses the function cache
of pg_operator and pg_opclass */
if ( !IsSystemRelationName(pgcform->relname.data))
1997-02-07 17:24:12 +01:00
RelationInvalidateHeapTuple(rd, rtup);
/* that's all, folks */
1997-02-07 17:24:12 +01:00
heap_endscan(rsdesc);
heap_close(rd);
}
1997-02-07 17:24:12 +01:00
/*
* vc_delhilowstats() -- delete pg_statistics rows
*
*/
static void
vc_delhilowstats(Oid relid, int attcnt, int *attnums)
1997-02-07 17:24:12 +01:00
{
Relation pgstatistic;
HeapScanDesc pgsscan;
HeapTuple pgstup;
ScanKeyData pgskey;
pgstatistic = heap_openr(StatisticRelationName);
if (relid != InvalidOid ) {
ScanKeyEntryInitialize(&pgskey, 0x0, Anum_pg_statistic_starelid,
ObjectIdEqualRegProcedure,
ObjectIdGetDatum(relid));
pgsscan = heap_beginscan(pgstatistic, false, NowTimeQual, 1, &pgskey);
}
else
pgsscan = heap_beginscan(pgstatistic, false, NowTimeQual, 0, NULL);
while (HeapTupleIsValid(pgstup = heap_getnext(pgsscan, 0, NULL)))
{
if ( attcnt > 0 )
{
Form_pg_statistic pgs = (Form_pg_statistic) GETSTRUCT (pgstup);
int i;
for (i = 0; i < attcnt; i++)
{
if ( pgs->staattnum == attnums[i] + 1 )
break;
}
if ( i >= attcnt )
continue; /* don't delete it */
}
1997-02-07 17:24:12 +01:00
heap_delete(pgstatistic, &pgstup->t_ctid);
}
heap_endscan(pgsscan);
heap_close(pgstatistic);
}
static void vc_setpagelock(Relation rel, BlockNumber blkno)
{
ItemPointerData itm;
ItemPointerSet(&itm, blkno, 1);
RelationSetLockForWritePage(rel, &itm);
}
/*
1997-02-07 17:24:12 +01:00
* vc_reappage() -- save a page on the array of reapped pages.
*
* As a side effect of the way that the vacuuming loop for a given
* relation works, higher pages come after lower pages in the array
* (and highest tid on a page is last).
*/
1996-11-27 08:27:20 +01:00
static void
1997-02-07 17:24:12 +01:00
vc_reappage(VPageList vpl, VPageDescr vpc)
{
VPageDescr newvpd;
1996-11-27 08:27:20 +01:00
/* allocate a VPageDescrData entry */
newvpd = (VPageDescr) palloc(sizeof(VPageDescrData) + vpc->vpd_noff*sizeof(OffsetNumber));
/* fill it in */
if ( vpc->vpd_noff > 0 )
memmove (newvpd->vpd_voff, vpc->vpd_voff, vpc->vpd_noff*sizeof(OffsetNumber));
newvpd->vpd_blkno = vpc->vpd_blkno;
newvpd->vpd_free = vpc->vpd_free;
1996-11-27 08:27:20 +01:00
newvpd->vpd_nusd = vpc->vpd_nusd;
newvpd->vpd_noff = vpc->vpd_noff;
1996-11-27 08:27:20 +01:00
/* insert this page into vpl list */
1997-02-07 17:24:12 +01:00
vc_vpinsert (vpl, newvpd);
1996-11-27 08:27:20 +01:00
1997-02-07 17:24:12 +01:00
} /* vc_reappage */
1996-11-27 08:27:20 +01:00
static void
1997-02-07 17:24:12 +01:00
vc_vpinsert (VPageList vpl, VPageDescr vpnew)
1996-11-27 08:27:20 +01:00
{
/* allocate a VPageDescr entry if needed */
if ( vpl->vpl_npages == 0 )
vpl->vpl_pgdesc = (VPageDescr*) palloc(100*sizeof(VPageDescr));
else if ( vpl->vpl_npages % 100 == 0 )
vpl->vpl_pgdesc = (VPageDescr*) repalloc(vpl->vpl_pgdesc, (vpl->vpl_npages+100)*sizeof(VPageDescr));
vpl->vpl_pgdesc[vpl->vpl_npages] = vpnew;
(vpl->vpl_npages)++;
}
static void
vc_free(VRelList vrl)
{
VRelList p_vrl;
MemoryContext old;
PortalVariableMemory pmem;
pmem = PortalGetVariableMemory(vc_portal);
old = MemoryContextSwitchTo((MemoryContext)pmem);
while (vrl != (VRelList) NULL) {
/* free rel list entry */
p_vrl = vrl;
vrl = vrl->vrl_next;
pfree(p_vrl);
}
(void) MemoryContextSwitchTo(old);
}
/*
1997-02-07 17:24:12 +01:00
* vc_getarchrel() -- open the archive relation for a heap relation
*
* The archive relation is named 'a,XXXXX' for the heap relation
* whose relid is XXXXX.
*/
#define ARCHIVE_PREFIX "a,"
static Relation
1997-02-07 17:24:12 +01:00
vc_getarchrel(Relation heaprel)
{
Relation archrel;
char *archrelname;
archrelname = palloc(sizeof(ARCHIVE_PREFIX) + NAMEDATALEN); /* bogus */
sprintf(archrelname, "%s%d", ARCHIVE_PREFIX, heaprel->rd_id);
archrel = heap_openr(archrelname);
pfree(archrelname);
return (archrel);
}
/*
1997-02-07 17:24:12 +01:00
* vc_archive() -- write a tuple to an archive relation
*
* In the future, this will invoke the archived accessd method. For
* now, archive relations are on mag disk.
*/
static void
1997-02-07 17:24:12 +01:00
vc_archive(Relation archrel, HeapTuple htup)
{
doinsert(archrel, htup);
}
static bool
1997-02-07 17:24:12 +01:00
vc_isarchrel(char *rname)
{
if (strncmp(ARCHIVE_PREFIX, rname,strlen(ARCHIVE_PREFIX)) == 0)
return (true);
return (false);
}
static char *
1997-02-07 17:24:12 +01:00
vc_find_eq (char *bot, int nelem, int size, char *elm, int (*compar)(char *, char *))
{
int res;
int last = nelem - 1;
int celm = nelem / 2;
bool last_move, first_move;
last_move = first_move = true;
for ( ; ; )
{
if ( first_move == true )
{
res = compar (bot, elm);
if ( res > 0 )
return (NULL);
if ( res == 0 )
return (bot);
first_move = false;
}
if ( last_move == true )
{
res = compar (elm, bot + last*size);
if ( res > 0 )
return (NULL);
if ( res == 0 )
return (bot + last*size);
last_move = false;
}
res = compar (elm, bot + celm*size);
if ( res == 0 )
return (bot + celm*size);
if ( res < 0 )
{
if ( celm == 0 )
return (NULL);
last = celm - 1;
celm = celm / 2;
last_move = true;
continue;
}
if ( celm == last )
return (NULL);
last = last - celm - 1;
bot = bot + (celm+1)*size;
celm = (last + 1) / 2;
first_move = true;
}
1997-02-07 17:24:12 +01:00
} /* vc_find_eq */
static int
1997-02-07 17:24:12 +01:00
vc_cmp_blk (char *left, char *right)
{
BlockNumber lblk, rblk;
lblk = (*((VPageDescr*)left))->vpd_blkno;
rblk = (*((VPageDescr*)right))->vpd_blkno;
if ( lblk < rblk )
return (-1);
if ( lblk == rblk )
return (0);
return (1);
1997-02-07 17:24:12 +01:00
} /* vc_cmp_blk */
static int
1997-02-07 17:24:12 +01:00
vc_cmp_offno (char *left, char *right)
{
if ( *(OffsetNumber*)left < *(OffsetNumber*)right )
return (-1);
if ( *(OffsetNumber*)left == *(OffsetNumber*)right )
return (0);
return (1);
1997-02-07 17:24:12 +01:00
} /* vc_cmp_offno */
1996-11-27 08:27:20 +01:00
static void
1997-02-07 17:24:12 +01:00
vc_getindices (Oid relid, int *nindices, Relation **Irel)
1996-11-27 08:27:20 +01:00
{
Relation pgindex;
Relation irel;
TupleDesc pgidesc;
HeapTuple pgitup;
HeapScanDesc pgiscan;
Datum d;
int i, k;
bool n;
ScanKeyData pgikey;
Oid *ioid;
*nindices = i = 0;
ioid = (Oid *) palloc(10*sizeof(Oid));
/* prepare a heap scan on the pg_index relation */
pgindex = heap_openr(IndexRelationName);
pgidesc = RelationGetTupleDescriptor(pgindex);
ScanKeyEntryInitialize(&pgikey, 0x0, Anum_pg_index_indrelid,
ObjectIdEqualRegProcedure,
ObjectIdGetDatum(relid));
pgiscan = heap_beginscan(pgindex, false, NowTimeQual, 1, &pgikey);
while (HeapTupleIsValid(pgitup = heap_getnext(pgiscan, 0, NULL))) {
d = (Datum) heap_getattr(pgitup, InvalidBuffer, Anum_pg_index_indexrelid,
pgidesc, &n);
i++;
if ( i % 10 == 0 )
ioid = (Oid *) repalloc(ioid, (i+10)*sizeof(Oid));
ioid[i-1] = DatumGetObjectId(d);
}
heap_endscan(pgiscan);
heap_close(pgindex);
if ( i == 0 ) { /* No one index found */
pfree(ioid);
return;
}
if ( Irel != (Relation **) NULL )
*Irel = (Relation *) palloc(i * sizeof(Relation));
for (k = 0; i > 0; )
{
irel = index_open(ioid[--i]);
if ( irel != (Relation) NULL )
{
if ( Irel != (Relation **) NULL )
(*Irel)[k] = irel;
else
index_close (irel);
k++;
}
else
elog (NOTICE, "CAN't OPEN INDEX %u - SKIP IT", ioid[i]);
}
*nindices = k;
pfree(ioid);
if ( Irel != (Relation **) NULL && *nindices == 0 )
{
pfree (*Irel);
*Irel = (Relation *) NULL;
}
1997-02-07 17:24:12 +01:00
} /* vc_getindices */
1996-11-27 08:27:20 +01:00
static void
1997-02-07 17:24:12 +01:00
vc_clsindices (int nindices, Relation *Irel)
1996-11-27 08:27:20 +01:00
{
if ( Irel == (Relation*) NULL )
return;
while (nindices--) {
index_close (Irel[nindices]);
}
pfree (Irel);
1997-02-07 17:24:12 +01:00
} /* vc_clsindices */
1996-11-27 08:27:20 +01:00
static void
1997-02-07 17:24:12 +01:00
vc_mkindesc (Relation onerel, int nindices, Relation *Irel, IndDesc **Idesc)
1996-11-27 08:27:20 +01:00
{
IndDesc *idcur;
HeapTuple pgIndexTup;
AttrNumber *attnumP;
int natts;
int i;
*Idesc = (IndDesc *) palloc (nindices * sizeof (IndDesc));
for (i = 0, idcur = *Idesc; i < nindices; i++, idcur++) {
pgIndexTup =
SearchSysCacheTuple(INDEXRELID,
ObjectIdGetDatum(Irel[i]->rd_id),
0,0,0);
Assert(pgIndexTup);
idcur->tform = (IndexTupleForm)GETSTRUCT(pgIndexTup);
for (attnumP = &(idcur->tform->indkey[0]), natts = 0;
*attnumP != InvalidAttrNumber && natts != INDEX_MAX_KEYS;
attnumP++, natts++);
if (idcur->tform->indproc != InvalidOid) {
idcur->finfoP = &(idcur->finfo);
FIgetnArgs(idcur->finfoP) = natts;
natts = 1;
FIgetProcOid(idcur->finfoP) = idcur->tform->indproc;
*(FIgetname(idcur->finfoP)) = '\0';
} else
idcur->finfoP = (FuncIndexInfo *) NULL;
idcur->natts = natts;
}
1997-02-07 17:24:12 +01:00
} /* vc_mkindesc */
1996-11-27 08:27:20 +01:00
static bool
1997-02-07 17:24:12 +01:00
vc_enough_space (VPageDescr vpd, Size len)
1996-11-27 08:27:20 +01:00
{
len = DOUBLEALIGN(len);
if ( len > vpd->vpd_free )
return (false);
if ( vpd->vpd_nusd < vpd->vpd_noff ) /* there are free itemid(s) */
return (true); /* and len <= free_space */
/* ok. noff_usd >= noff_free and so we'll have to allocate new itemid */
if ( len <= vpd->vpd_free - sizeof (ItemIdData) )
return (true);
return (false);
1997-02-07 17:24:12 +01:00
} /* vc_enough_space */