mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Implement "fastupdate" support for GIN indexes, in which we try to accumulate
multiple index entries in a holding area before adding them to the main index structure. This helps because bulk insert is (usually) significantly faster than retail insert for GIN. This patch also removes GIN support for amgettuple-style index scans. The API defined for amgettuple is difficult to support with fastupdate, and the previously committed partial-match feature didn't really work with it either. We might eventually figure a way to put back amgettuple support, but it won't happen for 8.4. catversion bumped because of change in GIN's pg_am entry, and because the format of GIN indexes changed on-disk (there's a metapage now, and possibly a pending list). Teodor Sigaev
This commit is contained in:
@ -32,7 +32,7 @@
|
||||
* Copyright (c) 2003-2009, PostgreSQL Global Development Group
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/nodes/tidbitmap.c,v 1.17 2009/01/10 21:08:36 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/nodes/tidbitmap.c,v 1.18 2009/03/24 20:17:14 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -309,6 +309,22 @@ tbm_add_tuples(TIDBitmap *tbm, const ItemPointer tids, int ntids,
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* tbm_add_page - add a whole page to a TIDBitmap
|
||||
*
|
||||
* This causes the whole page to be reported (with the recheck flag)
|
||||
* when the TIDBitmap is scanned.
|
||||
*/
|
||||
void
|
||||
tbm_add_page(TIDBitmap *tbm, BlockNumber pageno)
|
||||
{
|
||||
/* Enter the page in the bitmap, or mark it lossy if already present */
|
||||
tbm_mark_page_lossy(tbm, pageno);
|
||||
/* If we went over the memory limit, lossify some more pages */
|
||||
if (tbm->nentries > tbm->maxentries)
|
||||
tbm_lossify(tbm);
|
||||
}
|
||||
|
||||
/*
|
||||
* tbm_union - set union
|
||||
*
|
||||
@ -496,7 +512,7 @@ tbm_intersect_page(TIDBitmap *a, PagetableEntry *apage, const TIDBitmap *b)
|
||||
{
|
||||
/*
|
||||
* Some of the tuples in 'a' might not satisfy the quals for 'b',
|
||||
* but because the page 'b' is lossy, we don't know which ones.
|
||||
* but because the page 'b' is lossy, we don't know which ones.
|
||||
* Therefore we mark 'a' as requiring rechecks, to indicate that
|
||||
* at most those tuples set in 'a' are matches.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user