Commit e8cab5fe authored by Teodor Sigaev's avatar Teodor Sigaev

Concurrency for GiST

- full concurrency for insert/update/select/vacuum:
        - select and vacuum never locks more than one page simultaneously
        - select (gettuple) hasn't any lock across it's calls
        - insert never locks more than two page simultaneously:
                - during search of leaf to insert it locks only one page
                  simultaneously
                - while walk upward to the root it locked only parent (may be
                  non-direct parent) and child. One of them X-lock, another may
                  be S- or X-lock
- 'vacuum full' locks index
- improve gistgetmulti
- simplify XLOG records

Fix bug in index_beginscan_internal: LockRelation may clean
  rd_aminfo structure, so move GET_REL_PROCEDURE after LockRelation
parent c3be085a
This diff is collapsed.
This diff is collapsed.
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gist/gistscan.c,v 1.58 2005/05/17 03:34:18 neilc Exp $ * $PostgreSQL: pgsql/src/backend/access/gist/gistscan.c,v 1.59 2005/06/27 12:45:22 teodor Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -24,11 +24,10 @@ ...@@ -24,11 +24,10 @@
static void gistregscan(IndexScanDesc scan); static void gistregscan(IndexScanDesc scan);
static void gistdropscan(IndexScanDesc scan); static void gistdropscan(IndexScanDesc scan);
static void gistadjone(IndexScanDesc scan, int op, BlockNumber blkno, static void gistadjone(IndexScanDesc scan, int op, BlockNumber blkno,
OffsetNumber offnum); OffsetNumber offnum, XLogRecPtr newlsn, XLogRecPtr oldlsn);
static void adjuststack(GISTSTACK *stk, BlockNumber blkno); static void adjustiptr(IndexScanDesc scan, ItemPointer iptr, GISTSearchStack *stk,
static void adjustiptr(IndexScanDesc scan, ItemPointer iptr, int op, BlockNumber blkno, OffsetNumber offnum, XLogRecPtr newlsn, XLogRecPtr oldlsn);
int op, BlockNumber blkno, OffsetNumber offnum); static void gistfreestack(GISTSearchStack *s);
static void gistfreestack(GISTSTACK *s);
/* /*
* Whenever we start a GiST scan in a backend, we register it in * Whenever we start a GiST scan in a backend, we register it in
...@@ -139,7 +138,7 @@ gistmarkpos(PG_FUNCTION_ARGS) ...@@ -139,7 +138,7 @@ gistmarkpos(PG_FUNCTION_ARGS)
{ {
IndexScanDesc scan = (IndexScanDesc) PG_GETARG_POINTER(0); IndexScanDesc scan = (IndexScanDesc) PG_GETARG_POINTER(0);
GISTScanOpaque so; GISTScanOpaque so;
GISTSTACK *o, GISTSearchStack *o,
*n, *n,
*tmp; *tmp;
...@@ -156,12 +155,13 @@ gistmarkpos(PG_FUNCTION_ARGS) ...@@ -156,12 +155,13 @@ gistmarkpos(PG_FUNCTION_ARGS)
/* copy the parent stack from the current item data */ /* copy the parent stack from the current item data */
while (n != NULL) while (n != NULL)
{ {
tmp = (GISTSTACK *) palloc(sizeof(GISTSTACK)); tmp = (GISTSearchStack *) palloc(sizeof(GISTSearchStack));
tmp->offset = n->offset; tmp->lsn = n->lsn;
tmp->parentlsn = n->parentlsn;
tmp->block = n->block; tmp->block = n->block;
tmp->parent = o; tmp->next = o;
o = tmp; o = tmp;
n = n->parent; n = n->next;
} }
gistfreestack(so->markstk); gistfreestack(so->markstk);
...@@ -187,7 +187,7 @@ gistrestrpos(PG_FUNCTION_ARGS) ...@@ -187,7 +187,7 @@ gistrestrpos(PG_FUNCTION_ARGS)
{ {
IndexScanDesc scan = (IndexScanDesc) PG_GETARG_POINTER(0); IndexScanDesc scan = (IndexScanDesc) PG_GETARG_POINTER(0);
GISTScanOpaque so; GISTScanOpaque so;
GISTSTACK *o, GISTSearchStack *o,
*n, *n,
*tmp; *tmp;
...@@ -204,12 +204,13 @@ gistrestrpos(PG_FUNCTION_ARGS) ...@@ -204,12 +204,13 @@ gistrestrpos(PG_FUNCTION_ARGS)
/* copy the parent stack from the current item data */ /* copy the parent stack from the current item data */
while (n != NULL) while (n != NULL)
{ {
tmp = (GISTSTACK *) palloc(sizeof(GISTSTACK)); tmp = (GISTSearchStack *) palloc(sizeof(GISTSearchStack));
tmp->offset = n->offset; tmp->lsn = n->lsn;
tmp->parentlsn = n->parentlsn;
tmp->block = n->block; tmp->block = n->block;
tmp->parent = o; tmp->next = o;
o = tmp; o = tmp;
n = n->parent; n = n->next;
} }
gistfreestack(so->stack); gistfreestack(so->stack);
...@@ -253,6 +254,7 @@ gistendscan(PG_FUNCTION_ARGS) ...@@ -253,6 +254,7 @@ gistendscan(PG_FUNCTION_ARGS)
pfree(scan->opaque); pfree(scan->opaque);
} }
gistdropscan(scan); gistdropscan(scan);
PG_RETURN_VOID(); PG_RETURN_VOID();
...@@ -331,16 +333,19 @@ ReleaseResources_gist(void) ...@@ -331,16 +333,19 @@ ReleaseResources_gist(void)
} }
void void
gistadjscans(Relation rel, int op, BlockNumber blkno, OffsetNumber offnum) gistadjscans(Relation rel, int op, BlockNumber blkno, OffsetNumber offnum, XLogRecPtr newlsn, XLogRecPtr oldlsn)
{ {
GISTScanList l; GISTScanList l;
Oid relid; Oid relid;
if ( XLogRecPtrIsInvalid(newlsn) || XLogRecPtrIsInvalid(oldlsn) )
return;
relid = RelationGetRelid(rel); relid = RelationGetRelid(rel);
for (l = GISTScans; l != NULL; l = l->gsl_next) for (l = GISTScans; l != NULL; l = l->gsl_next)
{ {
if (l->gsl_scan->indexRelation->rd_id == relid) if (l->gsl_scan->indexRelation->rd_id == relid)
gistadjone(l->gsl_scan, op, blkno, offnum); gistadjone(l->gsl_scan, op, blkno, offnum, newlsn, oldlsn);
} }
} }
...@@ -358,20 +363,12 @@ static void ...@@ -358,20 +363,12 @@ static void
gistadjone(IndexScanDesc scan, gistadjone(IndexScanDesc scan,
int op, int op,
BlockNumber blkno, BlockNumber blkno,
OffsetNumber offnum) OffsetNumber offnum, XLogRecPtr newlsn, XLogRecPtr oldlsn)
{ {
GISTScanOpaque so; GISTScanOpaque so = (GISTScanOpaque) scan->opaque ;
adjustiptr(scan, &(scan->currentItemData), op, blkno, offnum);
adjustiptr(scan, &(scan->currentMarkData), op, blkno, offnum);
so = (GISTScanOpaque) scan->opaque;
if (op == GISTOP_SPLIT) adjustiptr(scan, &(scan->currentItemData), so->stack, op, blkno, offnum, newlsn, oldlsn);
{ adjustiptr(scan, &(scan->currentMarkData), so->markstk, op, blkno, offnum, newlsn, oldlsn);
adjuststack(so->stack, blkno);
adjuststack(so->markstk, blkno);
}
} }
/* /*
...@@ -383,10 +380,10 @@ gistadjone(IndexScanDesc scan, ...@@ -383,10 +380,10 @@ gistadjone(IndexScanDesc scan,
*/ */
static void static void
adjustiptr(IndexScanDesc scan, adjustiptr(IndexScanDesc scan,
ItemPointer iptr, ItemPointer iptr, GISTSearchStack *stk,
int op, int op,
BlockNumber blkno, BlockNumber blkno,
OffsetNumber offnum) OffsetNumber offnum, XLogRecPtr newlsn, XLogRecPtr oldlsn)
{ {
OffsetNumber curoff; OffsetNumber curoff;
GISTScanOpaque so; GISTScanOpaque so;
...@@ -402,7 +399,7 @@ adjustiptr(IndexScanDesc scan, ...@@ -402,7 +399,7 @@ adjustiptr(IndexScanDesc scan,
{ {
case GISTOP_DEL: case GISTOP_DEL:
/* back up one if we need to */ /* back up one if we need to */
if (curoff >= offnum) if (curoff >= offnum && XLByteEQ(stk->lsn, oldlsn) ) /* the same vesrion of page */
{ {
if (curoff > FirstOffsetNumber) if (curoff > FirstOffsetNumber)
{ {
...@@ -421,18 +418,9 @@ adjustiptr(IndexScanDesc scan, ...@@ -421,18 +418,9 @@ adjustiptr(IndexScanDesc scan,
else else
so->flags |= GS_MRKBEFORE; so->flags |= GS_MRKBEFORE;
} }
stk->lsn = newlsn;
} }
break; break;
case GISTOP_SPLIT:
/* back to start of page on split */
ItemPointerSet(iptr, blkno, FirstOffsetNumber);
if (iptr == &(scan->currentItemData))
so->flags &= ~GS_CURBEFORE;
else
so->flags &= ~GS_MRKBEFORE;
break;
default: default:
elog(ERROR, "Bad operation in GiST scan adjust: %d", op); elog(ERROR, "Bad operation in GiST scan adjust: %d", op);
} }
...@@ -440,37 +428,12 @@ adjustiptr(IndexScanDesc scan, ...@@ -440,37 +428,12 @@ adjustiptr(IndexScanDesc scan,
} }
} }
/*
* adjuststack() -- adjust the supplied stack for a split on a page in
* the index we're scanning.
*
* If a page on our parent stack has split, we need to back up to the
* beginning of the page and rescan it. The reason for this is that
* the split algorithm for GiSTs doesn't order tuples in any useful
* way on a single page. This means on that a split, we may wind up
* looking at some heap tuples more than once. This is handled in the
* access method update code for heaps; if we've modified the tuple we
* are looking at already in this transaction, we ignore the update
* request.
*/
static void
adjuststack(GISTSTACK *stk, BlockNumber blkno)
{
while (stk != NULL)
{
if (stk->block == blkno)
stk->offset = FirstOffsetNumber;
stk = stk->parent;
}
}
static void static void
gistfreestack(GISTSTACK *s) gistfreestack(GISTSearchStack *s)
{ {
while (s != NULL) while (s != NULL)
{ {
GISTSTACK *p = s->parent; GISTSearchStack *p = s->next;
pfree(s); pfree(s);
s = p; s = p;
} }
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.2 2005/06/20 10:29:36 teodor Exp $ * $PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.3 2005/06/27 12:45:22 teodor Exp $
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include "postgres.h"
...@@ -803,8 +803,12 @@ GISTInitBuffer(Buffer b, uint32 f) ...@@ -803,8 +803,12 @@ GISTInitBuffer(Buffer b, uint32 f)
page = BufferGetPage(b); page = BufferGetPage(b);
PageInit(page, pageSize, sizeof(GISTPageOpaqueData)); PageInit(page, pageSize, sizeof(GISTPageOpaqueData));
opaque = (GISTPageOpaque) PageGetSpecialPointer(page); opaque = GistPageGetOpaque(page);
opaque->flags = f; opaque->flags = f;
opaque->nsplited = 0;
opaque->level = 0;
opaque->rightlink = InvalidBlockNumber;
memset( &(opaque->nsn), 0, sizeof(GistNSN) );
} }
void void
...@@ -856,30 +860,38 @@ gistUserPicksplit(Relation r, GistEntryVector *entryvec, GIST_SPLITVEC *v, ...@@ -856,30 +860,38 @@ gistUserPicksplit(Relation r, GistEntryVector *entryvec, GIST_SPLITVEC *v,
} }
Buffer Buffer
gistReadBuffer(Relation r, BlockNumber blkno) { gistNewBuffer(Relation r) {
Buffer buffer = InvalidBuffer; Buffer buffer = InvalidBuffer;
bool needLock;
if ( blkno != P_NEW ) { while(true) {
buffer = ReadBuffer(r, blkno); BlockNumber blkno = GetFreeIndexPage(&r->rd_node);
} else { if (blkno == InvalidBlockNumber)
Page page; break;
while(true) {
blkno = GetFreeIndexPage(&r->rd_node);
if (blkno == InvalidBlockNumber)
break;
buffer = ReadBuffer(r, blkno); buffer = ReadBuffer(r, blkno);
page = BufferGetPage(buffer); if ( ConditionalLockBuffer(buffer) ) {
Page page = BufferGetPage(buffer);
if ( GistPageIsDeleted( page ) ) { if ( GistPageIsDeleted( page ) ) {
GistPageSetNonDeleted( page ); GistPageSetNonDeleted( page );
return buffer; return buffer;
} } else
ReleaseBuffer( buffer ); LockBuffer(buffer, GIST_UNLOCK);
} }
buffer = ReadBuffer(r, P_NEW); ReleaseBuffer( buffer );
} }
needLock = !RELATION_IS_LOCAL(r);
if (needLock)
LockRelationForExtension(r, ExclusiveLock);
buffer = ReadBuffer(r, P_NEW);
LockBuffer(buffer, GIST_EXCLUSIVE);
if (needLock)
UnlockRelationForExtension(r, ExclusiveLock);
return buffer; return buffer;
} }
This diff is collapsed.
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gist/gistxlog.c,v 1.3 2005/06/20 15:22:37 teodor Exp $ * $PostgreSQL: pgsql/src/backend/access/gist/gistxlog.c,v 1.4 2005/06/27 12:45:22 teodor Exp $
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include "postgres.h" #include "postgres.h"
...@@ -27,7 +27,6 @@ typedef struct { ...@@ -27,7 +27,6 @@ typedef struct {
gistxlogEntryUpdate *data; gistxlogEntryUpdate *data;
int len; int len;
IndexTuple *itup; IndexTuple *itup;
BlockNumber *path;
OffsetNumber *todelete; OffsetNumber *todelete;
} EntryUpdateRecord; } EntryUpdateRecord;
...@@ -39,7 +38,6 @@ typedef struct { ...@@ -39,7 +38,6 @@ typedef struct {
typedef struct { typedef struct {
gistxlogPageSplit *data; gistxlogPageSplit *data;
NewPage *page; NewPage *page;
BlockNumber *path;
} PageSplitRecord; } PageSplitRecord;
/* track for incomplete inserts, idea was taken from nbtxlog.c */ /* track for incomplete inserts, idea was taken from nbtxlog.c */
...@@ -49,9 +47,9 @@ typedef struct gistIncompleteInsert { ...@@ -49,9 +47,9 @@ typedef struct gistIncompleteInsert {
ItemPointerData key; ItemPointerData key;
int lenblk; int lenblk;
BlockNumber *blkno; BlockNumber *blkno;
int pathlen;
BlockNumber *path;
XLogRecPtr lsn; XLogRecPtr lsn;
BlockNumber *path;
int pathlen;
} gistIncompleteInsert; } gistIncompleteInsert;
...@@ -69,7 +67,6 @@ static List *incomplete_inserts; ...@@ -69,7 +67,6 @@ static List *incomplete_inserts;
static void static void
pushIncompleteInsert(RelFileNode node, XLogRecPtr lsn, ItemPointerData key, pushIncompleteInsert(RelFileNode node, XLogRecPtr lsn, ItemPointerData key,
BlockNumber *blkno, int lenblk, BlockNumber *blkno, int lenblk,
BlockNumber *path, int pathlen,
PageSplitRecord *xlinfo /* to extract blkno info */ ) { PageSplitRecord *xlinfo /* to extract blkno info */ ) {
MemoryContext oldCxt = MemoryContextSwitchTo(insertCtx); MemoryContext oldCxt = MemoryContextSwitchTo(insertCtx);
gistIncompleteInsert *ninsert = (gistIncompleteInsert*)palloc( sizeof(gistIncompleteInsert) ); gistIncompleteInsert *ninsert = (gistIncompleteInsert*)palloc( sizeof(gistIncompleteInsert) );
...@@ -93,15 +90,6 @@ pushIncompleteInsert(RelFileNode node, XLogRecPtr lsn, ItemPointerData key, ...@@ -93,15 +90,6 @@ pushIncompleteInsert(RelFileNode node, XLogRecPtr lsn, ItemPointerData key,
} }
Assert( ninsert->lenblk>0 ); Assert( ninsert->lenblk>0 );
if ( path && pathlen ) {
ninsert->pathlen = pathlen;
ninsert->path = (BlockNumber*)palloc( sizeof(BlockNumber)*ninsert->pathlen );
memcpy(ninsert->path, path, sizeof(BlockNumber)*ninsert->pathlen);
} else {
ninsert->pathlen = 0;
ninsert->path = NULL;
}
incomplete_inserts = lappend(incomplete_inserts, ninsert); incomplete_inserts = lappend(incomplete_inserts, ninsert);
MemoryContextSwitchTo(oldCxt); MemoryContextSwitchTo(oldCxt);
} }
...@@ -116,7 +104,6 @@ forgetIncompleteInsert(RelFileNode node, ItemPointerData key) { ...@@ -116,7 +104,6 @@ forgetIncompleteInsert(RelFileNode node, ItemPointerData key) {
if ( RelFileNodeEquals(node, insert->node) && ItemPointerEQ( &(insert->key), &(key) ) ) { if ( RelFileNodeEquals(node, insert->node) && ItemPointerEQ( &(insert->key), &(key) ) ) {
/* found */ /* found */
if ( insert->path ) pfree( insert->path );
pfree( insert->blkno ); pfree( insert->blkno );
incomplete_inserts = list_delete_ptr(incomplete_inserts, insert); incomplete_inserts = list_delete_ptr(incomplete_inserts, insert);
pfree( insert ); pfree( insert );
...@@ -132,15 +119,9 @@ decodeEntryUpdateRecord(EntryUpdateRecord *decoded, XLogRecord *record) { ...@@ -132,15 +119,9 @@ decodeEntryUpdateRecord(EntryUpdateRecord *decoded, XLogRecord *record) {
decoded->data = (gistxlogEntryUpdate*)begin; decoded->data = (gistxlogEntryUpdate*)begin;
if ( decoded->data->pathlen ) {
addpath = MAXALIGN( sizeof(BlockNumber) * decoded->data->pathlen );
decoded->path = (BlockNumber*)(begin+sizeof( gistxlogEntryUpdate ));
} else
decoded->path = NULL;
if ( decoded->data->ntodelete ) { if ( decoded->data->ntodelete ) {
decoded->todelete = (OffsetNumber*)(begin + sizeof( gistxlogEntryUpdate ) + addpath); decoded->todelete = (OffsetNumber*)(begin + sizeof( gistxlogEntryUpdate ) + addpath);
addpath += MAXALIGN( sizeof(OffsetNumber) * decoded->data->ntodelete ); addpath = MAXALIGN( sizeof(OffsetNumber) * decoded->data->ntodelete );
} else } else
decoded->todelete = NULL; decoded->todelete = NULL;
...@@ -244,7 +225,6 @@ gistRedoEntryUpdateRecord(XLogRecPtr lsn, XLogRecord *record, bool isnewroot) { ...@@ -244,7 +225,6 @@ gistRedoEntryUpdateRecord(XLogRecPtr lsn, XLogRecord *record, bool isnewroot) {
if ( !isnewroot && xlrec.data->blkno!=GIST_ROOT_BLKNO ) if ( !isnewroot && xlrec.data->blkno!=GIST_ROOT_BLKNO )
pushIncompleteInsert(xlrec.data->node, lsn, xlrec.data->key, pushIncompleteInsert(xlrec.data->node, lsn, xlrec.data->key,
&(xlrec.data->blkno), 1, &(xlrec.data->blkno), 1,
xlrec.path, xlrec.data->pathlen,
NULL); NULL);
} }
} }
...@@ -252,18 +232,12 @@ gistRedoEntryUpdateRecord(XLogRecPtr lsn, XLogRecord *record, bool isnewroot) { ...@@ -252,18 +232,12 @@ gistRedoEntryUpdateRecord(XLogRecPtr lsn, XLogRecord *record, bool isnewroot) {
static void static void
decodePageSplitRecord(PageSplitRecord *decoded, XLogRecord *record) { decodePageSplitRecord(PageSplitRecord *decoded, XLogRecord *record) {
char *begin = XLogRecGetData(record), *ptr; char *begin = XLogRecGetData(record), *ptr;
int j,i=0, addpath = 0; int j,i=0;
decoded->data = (gistxlogPageSplit*)begin; decoded->data = (gistxlogPageSplit*)begin;
decoded->page = (NewPage*)palloc( sizeof(NewPage) * decoded->data->npage ); decoded->page = (NewPage*)palloc( sizeof(NewPage) * decoded->data->npage );
if ( decoded->data->pathlen ) { ptr=begin+sizeof( gistxlogPageSplit );
addpath = MAXALIGN( sizeof(BlockNumber) * decoded->data->pathlen );
decoded->path = (BlockNumber*)(begin+sizeof( gistxlogPageSplit ));
} else
decoded->path = NULL;
ptr=begin+sizeof( gistxlogPageSplit ) + addpath;
for(i=0;i<decoded->data->npage;i++) { for(i=0;i<decoded->data->npage;i++) {
Assert( ptr - begin < record->xl_len ); Assert( ptr - begin < record->xl_len );
decoded->page[i].header = (gistxlogPage*)ptr; decoded->page[i].header = (gistxlogPage*)ptr;
...@@ -342,7 +316,6 @@ gistRedoPageSplitRecord(XLogRecPtr lsn, XLogRecord *record ) { ...@@ -342,7 +316,6 @@ gistRedoPageSplitRecord(XLogRecPtr lsn, XLogRecord *record ) {
pushIncompleteInsert(xlrec.data->node, lsn, xlrec.data->key, pushIncompleteInsert(xlrec.data->node, lsn, xlrec.data->key,
NULL, 0, NULL, 0,
xlrec.path, xlrec.data->pathlen,
&xlrec); &xlrec);
} }
} }
...@@ -499,6 +472,36 @@ gist_form_invalid_tuple(BlockNumber blkno) { ...@@ -499,6 +472,36 @@ gist_form_invalid_tuple(BlockNumber blkno) {
return tuple; return tuple;
} }
static void
gixtxlogFindPath( Relation index, gistIncompleteInsert *insert ) {
int i;
GISTInsertStack *top;
insert->pathlen = 0;
insert->path = NULL;
for(i=0;insert->lenblk;i++) {
if ( (top=gistFindPath(index, insert->blkno[i], XLogReadBuffer)) != NULL ) {
GISTInsertStack *ptr=top;
while(ptr) {
insert->pathlen++;
ptr = ptr->parent;
}
insert->path=(BlockNumber*)palloc( sizeof(BlockNumber) * insert->pathlen );
i=0;
ptr = top;
while(ptr) {
insert->path[i] = ptr->blkno;
i++;
ptr = ptr->parent;
}
break;
}
}
}
static void static void
gistContinueInsert(gistIncompleteInsert *insert) { gistContinueInsert(gistIncompleteInsert *insert) {
IndexTuple *itup; IndexTuple *itup;
...@@ -523,6 +526,9 @@ gistContinueInsert(gistIncompleteInsert *insert) { ...@@ -523,6 +526,9 @@ gistContinueInsert(gistIncompleteInsert *insert) {
for(i=0;i<insert->lenblk;i++) for(i=0;i<insert->lenblk;i++)
itup[i] = gist_form_invalid_tuple( insert->blkno[i] ); itup[i] = gist_form_invalid_tuple( insert->blkno[i] );
/* construct path */
gixtxlogFindPath( index, insert );
if ( insert->pathlen==0 ) { if ( insert->pathlen==0 ) {
/*it was split root, so we should only make new root*/ /*it was split root, so we should only make new root*/
Buffer buffer = XLogReadBuffer(true, index, GIST_ROOT_BLKNO); Buffer buffer = XLogReadBuffer(true, index, GIST_ROOT_BLKNO);
...@@ -662,8 +668,7 @@ gist_xlog_cleanup(void) { ...@@ -662,8 +668,7 @@ gist_xlog_cleanup(void) {
XLogRecData * XLogRecData *
formSplitRdata(RelFileNode node, BlockNumber blkno, formSplitRdata(RelFileNode node, BlockNumber blkno,
ItemPointer key, ItemPointer key, SplitedPageLayout *dist ) {
BlockNumber *path, int pathlen, SplitedPageLayout *dist ) {
XLogRecData *rdata; XLogRecData *rdata;
gistxlogPageSplit *xlrec = (gistxlogPageSplit*)palloc(sizeof(gistxlogPageSplit)); gistxlogPageSplit *xlrec = (gistxlogPageSplit*)palloc(sizeof(gistxlogPageSplit));
...@@ -681,7 +686,6 @@ formSplitRdata(RelFileNode node, BlockNumber blkno, ...@@ -681,7 +686,6 @@ formSplitRdata(RelFileNode node, BlockNumber blkno,
xlrec->node = node; xlrec->node = node;
xlrec->origblkno = blkno; xlrec->origblkno = blkno;
xlrec->npage = (uint16)npage; xlrec->npage = (uint16)npage;
xlrec->pathlen = (uint16)pathlen;
if ( key ) if ( key )
xlrec->key = *key; xlrec->key = *key;
else else
...@@ -692,15 +696,6 @@ formSplitRdata(RelFileNode node, BlockNumber blkno, ...@@ -692,15 +696,6 @@ formSplitRdata(RelFileNode node, BlockNumber blkno,
rdata[0].len = sizeof( gistxlogPageSplit ); rdata[0].len = sizeof( gistxlogPageSplit );
rdata[0].next = NULL; rdata[0].next = NULL;
if ( pathlen ) {
rdata[cur-1].next = &(rdata[cur]);
rdata[cur].buffer = InvalidBuffer;
rdata[cur].data = (char*)path;
rdata[cur].len = MAXALIGN(sizeof(BlockNumber)*pathlen);
rdata[cur].next = NULL;
cur++;
}
ptr=dist; ptr=dist;
while(ptr) { while(ptr) {
rdata[cur].buffer = InvalidBuffer; rdata[cur].buffer = InvalidBuffer;
...@@ -725,8 +720,7 @@ formSplitRdata(RelFileNode node, BlockNumber blkno, ...@@ -725,8 +720,7 @@ formSplitRdata(RelFileNode node, BlockNumber blkno,
XLogRecData * XLogRecData *
formUpdateRdata(RelFileNode node, BlockNumber blkno, formUpdateRdata(RelFileNode node, BlockNumber blkno,
OffsetNumber *todelete, int ntodelete, bool emptypage, OffsetNumber *todelete, int ntodelete, bool emptypage,
IndexTuple *itup, int ituplen, ItemPointer key, IndexTuple *itup, int ituplen, ItemPointer key ) {
BlockNumber *path, int pathlen) {
XLogRecData *rdata; XLogRecData *rdata;
gistxlogEntryUpdate *xlrec = (gistxlogEntryUpdate*)palloc(sizeof(gistxlogEntryUpdate)); gistxlogEntryUpdate *xlrec = (gistxlogEntryUpdate*)palloc(sizeof(gistxlogEntryUpdate));
...@@ -740,7 +734,6 @@ formUpdateRdata(RelFileNode node, BlockNumber blkno, ...@@ -740,7 +734,6 @@ formUpdateRdata(RelFileNode node, BlockNumber blkno,
if ( emptypage ) { if ( emptypage ) {
xlrec->isemptypage = true; xlrec->isemptypage = true;
xlrec->ntodelete = 0; xlrec->ntodelete = 0;
xlrec->pathlen = 0;
rdata = (XLogRecData*)palloc( sizeof(XLogRecData) ); rdata = (XLogRecData*)palloc( sizeof(XLogRecData) );
rdata->buffer = InvalidBuffer; rdata->buffer = InvalidBuffer;
...@@ -752,24 +745,14 @@ formUpdateRdata(RelFileNode node, BlockNumber blkno, ...@@ -752,24 +745,14 @@ formUpdateRdata(RelFileNode node, BlockNumber blkno,
xlrec->isemptypage = false; xlrec->isemptypage = false;
xlrec->ntodelete = ntodelete; xlrec->ntodelete = ntodelete;
xlrec->pathlen = pathlen;
rdata = (XLogRecData*) palloc( sizeof(XLogRecData) * ( 3 + ituplen ) ); rdata = (XLogRecData*) palloc( sizeof(XLogRecData) * ( 2 + ituplen ) );
rdata->buffer = InvalidBuffer; rdata->buffer = InvalidBuffer;
rdata->data = (char*)xlrec; rdata->data = (char*)xlrec;
rdata->len = sizeof(gistxlogEntryUpdate); rdata->len = sizeof(gistxlogEntryUpdate);
rdata->next = NULL; rdata->next = NULL;
if ( pathlen ) {
rdata[cur-1].next = &(rdata[cur]);
rdata[cur].buffer = InvalidBuffer;
rdata[cur].data = (char*)path;
rdata[cur].len = MAXALIGN(sizeof(BlockNumber)*pathlen);
rdata[cur].next = NULL;
cur++;
}
if ( ntodelete ) { if ( ntodelete ) {
rdata[cur-1].next = &(rdata[cur]); rdata[cur-1].next = &(rdata[cur]);
rdata[cur].buffer = InvalidBuffer; rdata[cur].buffer = InvalidBuffer;
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/index/indexam.c,v 1.83 2005/06/13 23:14:48 tgl Exp $ * $PostgreSQL: pgsql/src/backend/access/index/indexam.c,v 1.84 2005/06/27 12:45:22 teodor Exp $
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
* index_open - open an index relation by relation OID * index_open - open an index relation by relation OID
...@@ -287,7 +287,6 @@ index_beginscan_internal(Relation indexRelation, ...@@ -287,7 +287,6 @@ index_beginscan_internal(Relation indexRelation,
FmgrInfo *procedure; FmgrInfo *procedure;
RELATION_CHECKS; RELATION_CHECKS;
GET_REL_PROCEDURE(ambeginscan);
RelationIncrementReferenceCount(indexRelation); RelationIncrementReferenceCount(indexRelation);
...@@ -300,6 +299,13 @@ index_beginscan_internal(Relation indexRelation, ...@@ -300,6 +299,13 @@ index_beginscan_internal(Relation indexRelation,
*/ */
LockRelation(indexRelation, AccessShareLock); LockRelation(indexRelation, AccessShareLock);
/*
* LockRelation can clean rd_aminfo structure, so fill procedure
* after LockRelation
*/
GET_REL_PROCEDURE(ambeginscan);
/* /*
* Tell the AM to open a scan. * Tell the AM to open a scan.
*/ */
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/access/gist.h,v 1.47 2005/06/20 10:29:36 teodor Exp $ * $PostgreSQL: pgsql/src/include/access/gist.h,v 1.48 2005/06/27 12:45:22 teodor Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
#include "storage/bufpage.h" #include "storage/bufpage.h"
#include "storage/off.h" #include "storage/off.h"
#include "utils/rel.h" #include "utils/rel.h"
#include "access/xlog.h"
#include "access/xlogdefs.h"
/* /*
* amproc indexes for GiST indexes. * amproc indexes for GiST indexes.
...@@ -39,9 +41,22 @@ ...@@ -39,9 +41,22 @@
#define F_DELETED (1 << 1) #define F_DELETED (1 << 1)
#define F_TUPLES_DELETED (1 << 2) #define F_TUPLES_DELETED (1 << 2)
typedef XLogRecPtr GistNSN;
typedef struct GISTPageOpaqueData typedef struct GISTPageOpaqueData
{ {
uint32 flags; uint8 flags;
/* number page to which current one is splitted in last split */
uint8 nsplited;
/* level of page, 0 - leaf */
uint16 level;
BlockNumber rightlink;
/* the only meaning - change this value if
page split. */
GistNSN nsn;
} GISTPageOpaqueData; } GISTPageOpaqueData;
typedef GISTPageOpaqueData *GISTPageOpaque; typedef GISTPageOpaqueData *GISTPageOpaque;
...@@ -90,18 +105,20 @@ typedef struct GISTENTRY ...@@ -90,18 +105,20 @@ typedef struct GISTENTRY
bool leafkey; bool leafkey;
} GISTENTRY; } GISTENTRY;
#define GistPageIsLeaf(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags & F_LEAF) #define GistPageGetOpaque(page) ( (GISTPageOpaque) PageGetSpecialPointer(page) )
#define GistPageIsLeaf(page) ( GistPageGetOpaque(page)->flags & F_LEAF)
#define GIST_LEAF(entry) (GistPageIsLeaf((entry)->page)) #define GIST_LEAF(entry) (GistPageIsLeaf((entry)->page))
#define GistPageSetLeaf(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags |= F_LEAF) #define GistPageSetLeaf(page) ( GistPageGetOpaque(page)->flags |= F_LEAF)
#define GistPageSetNonLeaf(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags &= ~F_LEAF) #define GistPageSetNonLeaf(page) ( GistPageGetOpaque(page)->flags &= ~F_LEAF)
#define GistPageIsDeleted(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags & F_DELETED) #define GistPageIsDeleted(page) ( GistPageGetOpaque(page)->flags & F_DELETED)
#define GistPageSetDeleted(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags |= F_DELETED) #define GistPageSetDeleted(page) ( GistPageGetOpaque(page)->flags |= F_DELETED)
#define GistPageSetNonDeleted(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags &= ~F_DELETED) #define GistPageSetNonDeleted(page) ( GistPageGetOpaque(page)->flags &= ~F_DELETED)
#define GistTuplesDeleted(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags & F_TUPLES_DELETED) #define GistTuplesDeleted(page) ( GistPageGetOpaque(page)->flags & F_TUPLES_DELETED)
#define GistMarkTuplesDeleted(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags |= F_TUPLES_DELETED) #define GistMarkTuplesDeleted(page) ( GistPageGetOpaque(page)->flags |= F_TUPLES_DELETED)
#define GistClearTuplesDeleted(page) (((GISTPageOpaque) PageGetSpecialPointer(page))->flags &= ~F_TUPLES_DELETED) #define GistClearTuplesDeleted(page) ( GistPageGetOpaque(page)->flags &= ~F_TUPLES_DELETED)
/* /*
* Vector of GISTENTRY structs; user-defined methods union and pick * Vector of GISTENTRY structs; user-defined methods union and pick
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/access/gist_private.h,v 1.5 2005/06/20 15:22:38 teodor Exp $ * $PostgreSQL: pgsql/src/include/access/gist_private.h,v 1.6 2005/06/27 12:45:22 teodor Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -20,7 +20,13 @@ ...@@ -20,7 +20,13 @@
#include "access/xlogdefs.h" #include "access/xlogdefs.h"
#include "fmgr.h" #include "fmgr.h"
#define GIST_UNLOCK BUFFER_LOCK_UNLOCK
#define GIST_SHARE BUFFER_LOCK_SHARE
#define GIST_EXCLUSIVE BUFFER_LOCK_EXCLUSIVE
/* /*
* XXX old comment!!!
* When we descend a tree, we keep a stack of parent pointers. This * When we descend a tree, we keep a stack of parent pointers. This
* allows us to follow a chain of internal node points until we reach * allows us to follow a chain of internal node points until we reach
* a leaf node, and then back up the stack to re-examine the internal * a leaf node, and then back up the stack to re-examine the internal
...@@ -31,12 +37,15 @@ ...@@ -31,12 +37,15 @@
* the node's page that we stopped at (i.e. we followed the child * the node's page that we stopped at (i.e. we followed the child
* pointer located at the specified offset). * pointer located at the specified offset).
*/ */
typedef struct GISTSTACK typedef struct GISTSearchStack
{ {
struct GISTSTACK *parent; struct GISTSearchStack *next;
OffsetNumber offset;
BlockNumber block; BlockNumber block;
} GISTSTACK; /* to identify page changed */
GistNSN lsn;
/* to recognize split occured */
GistNSN parentlsn;
} GISTSearchStack;
typedef struct GISTSTATE typedef struct GISTSTATE
{ {
...@@ -57,8 +66,8 @@ typedef struct GISTSTATE ...@@ -57,8 +66,8 @@ typedef struct GISTSTATE
*/ */
typedef struct GISTScanOpaqueData typedef struct GISTScanOpaqueData
{ {
GISTSTACK *stack; GISTSearchStack *stack;
GISTSTACK *markstk; GISTSearchStack *markstk;
uint16 flags; uint16 flags;
GISTSTATE *giststate; GISTSTATE *giststate;
MemoryContext tempCxt; MemoryContext tempCxt;
...@@ -68,6 +77,71 @@ typedef struct GISTScanOpaqueData ...@@ -68,6 +77,71 @@ typedef struct GISTScanOpaqueData
typedef GISTScanOpaqueData *GISTScanOpaque; typedef GISTScanOpaqueData *GISTScanOpaque;
/* XLog stuff */
extern const XLogRecPtr XLogRecPtrForTemp;
#define XLOG_GIST_ENTRY_UPDATE 0x00
#define XLOG_GIST_ENTRY_DELETE 0x10
#define XLOG_GIST_NEW_ROOT 0x20
typedef struct gistxlogEntryUpdate {
RelFileNode node;
BlockNumber blkno;
uint16 ntodelete;
bool isemptypage;
/*
* It used to identify completeness of insert.
* Sets to leaf itup
*/
ItemPointerData key;
/* follow:
* 1. todelete OffsetNumbers
* 2. tuples to insert
*/
} gistxlogEntryUpdate;
#define XLOG_GIST_PAGE_SPLIT 0x30
typedef struct gistxlogPageSplit {
RelFileNode node;
BlockNumber origblkno; /*splitted page*/
uint16 npage;
/* see comments on gistxlogEntryUpdate */
ItemPointerData key;
/* follow:
* 1. gistxlogPage and array of IndexTupleData per page
*/
} gistxlogPageSplit;
#define XLOG_GIST_INSERT_COMPLETE 0x40
typedef struct gistxlogPage {
BlockNumber blkno;
int num;
} gistxlogPage;
#define XLOG_GIST_CREATE_INDEX 0x50
typedef struct gistxlogInsertComplete {
RelFileNode node;
/* follows ItemPointerData key to clean */
} gistxlogInsertComplete;
/* SplitedPageLayout - gistSplit function result */
typedef struct SplitedPageLayout {
gistxlogPage block;
IndexTupleData *list;
int lenlist;
Buffer buffer; /* to write after all proceed */
struct SplitedPageLayout *next;
} SplitedPageLayout;
/* /*
* GISTInsertStack used for locking buffers and transfer arguments during * GISTInsertStack used for locking buffers and transfer arguments during
* insertion * insertion
...@@ -78,16 +152,25 @@ typedef struct GISTInsertStack { ...@@ -78,16 +152,25 @@ typedef struct GISTInsertStack {
BlockNumber blkno; BlockNumber blkno;
Buffer buffer; Buffer buffer;
Page page; Page page;
/* log sequence number from page->lsn to
recognize page update and compare it with page's nsn
to recognize page split*/
GistNSN lsn;
/* child's offset */ /* child's offset */
OffsetNumber childoffnum; OffsetNumber childoffnum;
/* pointer to parent */ /* pointer to parent and child */
struct GISTInsertStack *parent; struct GISTInsertStack *parent;
struct GISTInsertStack *child;
bool todelete; /* for gistFindPath */
struct GISTInsertStack *next;
} GISTInsertStack; } GISTInsertStack;
#define XLogRecPtrIsInvalid( r ) ( (r).xlogid == 0 && (r).xrecoff == 0 )
typedef struct { typedef struct {
Relation r; Relation r;
IndexTuple *itup; /* in/out, points to compressed entry */ IndexTuple *itup; /* in/out, points to compressed entry */
...@@ -97,10 +180,6 @@ typedef struct { ...@@ -97,10 +180,6 @@ typedef struct {
/* pointer to heap tuple */ /* pointer to heap tuple */
ItemPointerData key; ItemPointerData key;
/* path to stroe in XLog */
BlockNumber *path;
int pathlen;
} GISTInsertState; } GISTInsertState;
/* /*
...@@ -124,7 +203,7 @@ typedef struct { ...@@ -124,7 +203,7 @@ typedef struct {
* constants tell us what sort of operation changed the index. * constants tell us what sort of operation changed the index.
*/ */
#define GISTOP_DEL 0 #define GISTOP_DEL 0
#define GISTOP_SPLIT 1 /* #define GISTOP_SPLIT 1 */
#define ATTSIZE(datum, tupdesc, i, isnull) \ #define ATTSIZE(datum, tupdesc, i, isnull) \
( \ ( \
...@@ -132,64 +211,6 @@ typedef struct { ...@@ -132,64 +211,6 @@ typedef struct {
att_addlength(0, (tupdesc)->attrs[(i)-1]->attlen, (datum)) \ att_addlength(0, (tupdesc)->attrs[(i)-1]->attlen, (datum)) \
) )
/* XLog stuff */
#define XLOG_GIST_ENTRY_UPDATE 0x00
#define XLOG_GIST_ENTRY_DELETE 0x10
#define XLOG_GIST_NEW_ROOT 0x20
typedef struct gistxlogEntryUpdate {
RelFileNode node;
BlockNumber blkno;
uint16 ntodelete;
uint16 pathlen;
bool isemptypage;
/*
* It used to identify completeness of insert.
* Sets to leaf itup
*/
ItemPointerData key;
/* follow:
* 1. path to root (BlockNumber)
* 2. todelete OffsetNumbers
* 3. tuples to insert
*/
} gistxlogEntryUpdate;
#define XLOG_GIST_PAGE_SPLIT 0x30
typedef struct gistxlogPageSplit {
RelFileNode node;
BlockNumber origblkno; /*splitted page*/
uint16 pathlen;
uint16 npage;
/* see comments on gistxlogEntryUpdate */
ItemPointerData key;
/* follow:
* 1. path to root (BlockNumber)
* 2. gistxlogPage and array of IndexTupleData per page
*/
} gistxlogPageSplit;
typedef struct gistxlogPage {
BlockNumber blkno;
int num;
} gistxlogPage;
#define XLOG_GIST_INSERT_COMPLETE 0x40
typedef struct gistxlogInsertComplete {
RelFileNode node;
/* follows ItemPointerData key to clean */
} gistxlogInsertComplete;
#define XLOG_GIST_CREATE_INDEX 0x50
/* /*
* mark tuples on inner pages during recovery * mark tuples on inner pages during recovery
*/ */
...@@ -206,20 +227,14 @@ extern Datum gistinsert(PG_FUNCTION_ARGS); ...@@ -206,20 +227,14 @@ extern Datum gistinsert(PG_FUNCTION_ARGS);
extern MemoryContext createTempGistContext(void); extern MemoryContext createTempGistContext(void);
extern void initGISTstate(GISTSTATE *giststate, Relation index); extern void initGISTstate(GISTSTATE *giststate, Relation index);
extern void freeGISTstate(GISTSTATE *giststate); extern void freeGISTstate(GISTSTATE *giststate);
extern void gistnewroot(Relation r, IndexTuple *itup, int len, ItemPointer key);
extern void gistmakedeal(GISTInsertState *state, GISTSTATE *giststate); extern void gistmakedeal(GISTInsertState *state, GISTSTATE *giststate);
extern void gistnewroot(Relation r, Buffer buffer, IndexTuple *itup, int len, ItemPointer key);
typedef struct SplitedPageLayout { extern IndexTuple * gistSplit(Relation r, Buffer buffer, IndexTuple *itup,
gistxlogPage block;
IndexTupleData *list;
int lenlist;
Buffer buffer; /* to write after all proceed */
struct SplitedPageLayout *next;
} SplitedPageLayout;
IndexTuple * gistSplit(Relation r, Buffer buffer, IndexTuple *itup,
int *len, SplitedPageLayout **dist, GISTSTATE *giststate); int *len, SplitedPageLayout **dist, GISTSTATE *giststate);
extern GISTInsertStack* gistFindPath( Relation r, BlockNumber child,
Buffer (*myReadBuffer)(bool, Relation, BlockNumber) );
/* gistxlog.c */ /* gistxlog.c */
extern void gist_redo(XLogRecPtr lsn, XLogRecord *record); extern void gist_redo(XLogRecPtr lsn, XLogRecord *record);
extern void gist_desc(char *buf, uint8 xl_info, char *rec); extern void gist_desc(char *buf, uint8 xl_info, char *rec);
...@@ -229,12 +244,10 @@ extern IndexTuple gist_form_invalid_tuple(BlockNumber blkno); ...@@ -229,12 +244,10 @@ extern IndexTuple gist_form_invalid_tuple(BlockNumber blkno);
extern XLogRecData* formUpdateRdata(RelFileNode node, BlockNumber blkno, extern XLogRecData* formUpdateRdata(RelFileNode node, BlockNumber blkno,
OffsetNumber *todelete, int ntodelete, bool emptypage, OffsetNumber *todelete, int ntodelete, bool emptypage,
IndexTuple *itup, int ituplen, ItemPointer key, IndexTuple *itup, int ituplen, ItemPointer key);
BlockNumber *path, int pathlen);
extern XLogRecData* formSplitRdata(RelFileNode node, BlockNumber blkno, extern XLogRecData* formSplitRdata(RelFileNode node, BlockNumber blkno,
ItemPointer key, ItemPointer key, SplitedPageLayout *dist);
BlockNumber *path, int pathlen, SplitedPageLayout *dist );
extern XLogRecPtr gistxlogInsertCompletion(RelFileNode node, ItemPointerData *keys, int len); extern XLogRecPtr gistxlogInsertCompletion(RelFileNode node, ItemPointerData *keys, int len);
...@@ -243,7 +256,7 @@ extern Datum gistgettuple(PG_FUNCTION_ARGS); ...@@ -243,7 +256,7 @@ extern Datum gistgettuple(PG_FUNCTION_ARGS);
extern Datum gistgetmulti(PG_FUNCTION_ARGS); extern Datum gistgetmulti(PG_FUNCTION_ARGS);
/* gistutil.c */ /* gistutil.c */
extern Buffer gistReadBuffer(Relation r, BlockNumber blkno); extern Buffer gistNewBuffer(Relation r);
extern OffsetNumber gistfillbuffer(Relation r, Page page, IndexTuple *itup, extern OffsetNumber gistfillbuffer(Relation r, Page page, IndexTuple *itup,
int len, OffsetNumber off); int len, OffsetNumber off);
extern bool gistnospace(Page page, IndexTuple *itvec, int len); extern bool gistnospace(Page page, IndexTuple *itvec, int len);
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/access/gistscan.h,v 1.26 2004/12/31 22:03:21 pgsql Exp $ * $PostgreSQL: pgsql/src/include/access/gistscan.h,v 1.27 2005/06/27 12:45:22 teodor Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -15,13 +15,14 @@ ...@@ -15,13 +15,14 @@
#define GISTSCAN_H #define GISTSCAN_H
#include "access/relscan.h" #include "access/relscan.h"
#include "access/xlogdefs.h"
extern Datum gistbeginscan(PG_FUNCTION_ARGS); extern Datum gistbeginscan(PG_FUNCTION_ARGS);
extern Datum gistrescan(PG_FUNCTION_ARGS); extern Datum gistrescan(PG_FUNCTION_ARGS);
extern Datum gistmarkpos(PG_FUNCTION_ARGS); extern Datum gistmarkpos(PG_FUNCTION_ARGS);
extern Datum gistrestrpos(PG_FUNCTION_ARGS); extern Datum gistrestrpos(PG_FUNCTION_ARGS);
extern Datum gistendscan(PG_FUNCTION_ARGS); extern Datum gistendscan(PG_FUNCTION_ARGS);
extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum); extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum, XLogRecPtr newlsn, XLogRecPtr oldlsn);
extern void ReleaseResources_gist(void); extern void ReleaseResources_gist(void);
#endif /* GISTSCAN_H */ #endif /* GISTSCAN_H */
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.281 2005/06/24 20:53:31 tgl Exp $ * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.282 2005/06/27 12:45:22 teodor Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -53,6 +53,6 @@ ...@@ -53,6 +53,6 @@
*/ */
/* yyyymmddN */ /* yyyymmddN */
#define CATALOG_VERSION_NO 200506241 #define CATALOG_VERSION_NO 200506271
#endif #endif
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/catalog/pg_am.h,v 1.36 2005/06/24 20:53:31 tgl Exp $ * $PostgreSQL: pgsql/src/include/catalog/pg_am.h,v 1.37 2005/06/27 12:45:23 teodor Exp $
* *
* NOTES * NOTES
* the genbki.sh script reads this file and generates .bki * the genbki.sh script reads this file and generates .bki
...@@ -112,7 +112,7 @@ DESCR("b-tree index access method"); ...@@ -112,7 +112,7 @@ DESCR("b-tree index access method");
DATA(insert OID = 405 ( hash 1 1 0 f f f f t hashinsert hashbeginscan hashgettuple hashgetmulti hashrescan hashendscan hashmarkpos hashrestrpos hashbuild hashbulkdelete - hashcostestimate )); DATA(insert OID = 405 ( hash 1 1 0 f f f f t hashinsert hashbeginscan hashgettuple hashgetmulti hashrescan hashendscan hashmarkpos hashrestrpos hashbuild hashbulkdelete - hashcostestimate ));
DESCR("hash index access method"); DESCR("hash index access method");
#define HASH_AM_OID 405 #define HASH_AM_OID 405
DATA(insert OID = 783 ( gist 100 7 0 f t f f f gistinsert gistbeginscan gistgettuple gistgetmulti gistrescan gistendscan gistmarkpos gistrestrpos gistbuild gistbulkdelete gistvacuumcleanup gistcostestimate )); DATA(insert OID = 783 ( gist 100 7 0 f t f f t gistinsert gistbeginscan gistgettuple gistgetmulti gistrescan gistendscan gistmarkpos gistrestrpos gistbuild gistbulkdelete gistvacuumcleanup gistcostestimate ));
DESCR("GiST index access method"); DESCR("GiST index access method");
#define GIST_AM_OID 783 #define GIST_AM_OID 783
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment