mirror of
https://github.com/postgres/postgres.git
synced 2025-11-01 21:31:19 +03:00
Repair possible failure to update hint bits back to disk, per
http://archives.postgresql.org/pgsql-hackers/2004-10/msg00464.php. This fix is intended to be permanent: it moves the responsibility for calling SetBufferCommitInfoNeedsSave() into the tqual.c routines, eliminating the requirement for callers to test whether t_infomask changed. Also, tighten validity checking on buffer IDs in bufmgr.c --- several routines were paranoid about out-of-range shared buffer numbers but not about out-of-range local ones, which seems a tad pointless.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.116 2004/08/29 05:06:40 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.117 2004/10/15 22:39:49 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -261,19 +261,13 @@ _bt_check_unique(Relation rel, BTItem btitem, Relation heapRel,
|
||||
* marked killed. This logic should match
|
||||
* index_getnext and btgettuple.
|
||||
*/
|
||||
uint16 sv_infomask;
|
||||
|
||||
LockBuffer(hbuffer, BUFFER_LOCK_SHARE);
|
||||
sv_infomask = htup.t_data->t_infomask;
|
||||
if (HeapTupleSatisfiesVacuum(htup.t_data,
|
||||
RecentGlobalXmin) ==
|
||||
HEAPTUPLE_DEAD)
|
||||
if (HeapTupleSatisfiesVacuum(htup.t_data, RecentGlobalXmin,
|
||||
hbuffer) == HEAPTUPLE_DEAD)
|
||||
{
|
||||
curitemid->lp_flags |= LP_DELETE;
|
||||
SetBufferCommitInfoNeedsSave(buf);
|
||||
}
|
||||
if (sv_infomask != htup.t_data->t_infomask)
|
||||
SetBufferCommitInfoNeedsSave(hbuffer);
|
||||
LockBuffer(hbuffer, BUFFER_LOCK_UNLOCK);
|
||||
ReleaseBuffer(hbuffer);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user