mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Mark index entries "killed" when they are no longer visible to any
transaction, so as to avoid returning them out of the index AM. Saves repeated heap_fetch operations on frequently-updated rows. Also detect queries on unique keys (equality to all columns of a unique index), and don't bother continuing scan once we have found first match. Killing is implemented in the btree and hash AMs, but not yet in rtree or gist, because there isn't an equally convenient place to do it in those AMs (the outer amgetnext routine can't do it without re-pinning the index page). Did some small cleanup on APIs of HeapTupleSatisfies, heap_fetch, and index_insert to make this a little easier.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/analyze.c,v 1.34 2002/05/21 22:05:54 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/analyze.c,v 1.35 2002/05/24 18:57:55 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -655,8 +655,8 @@ pageloop:;
|
||||
goto pageloop;
|
||||
}
|
||||
ItemPointerSet(&targtuple.t_self, targblock, targoffset);
|
||||
heap_fetch(onerel, SnapshotNow, &targtuple, &tupbuffer, NULL);
|
||||
if (targtuple.t_data != NULL)
|
||||
if (heap_fetch(onerel, SnapshotNow, &targtuple, &tupbuffer,
|
||||
false, NULL))
|
||||
{
|
||||
/*
|
||||
* Found a suitable tuple, so save it, replacing one old
|
||||
|
Reference in New Issue
Block a user