[HACKERS] _hash_addovflpage has a bug - Mailing list pgsql-hackers

From Robert Haas
Subject [HACKERS] _hash_addovflpage has a bug
Date
Msg-id CA+TgmoYz2VMC0=zC-xADvb_7Jn1oif+dKeDRmS0owCy2EajxfA@mail.gmail.com
Whole thread Raw
Responses Re: [HACKERS] _hash_addovflpage has a bug  (Amit Kapila <amit.kapila16@gmail.com>)
List pgsql-hackers
It looks to to me like the recent hash index changes have left
_hash_addovflpage slightly broken.  I think that if that function
reaches the point where it calls _hash_getbuf() to fetch the next page
in the bucket chain, we also need to clear retain_pin.  Otherwise,
we'll erroneously think that we're supposed to retain a pin even when
the current page is an overflow page rather than the primary bucket
page, which is wrong.

A larger question, I suppose, is why this function wants to be certain
of adding a new page even if someone else has already done so.  It
seems like it might be smarter for it to just return the newly added
page to the caller and let the caller try to use it.  _hash_doinsert
has an Assert() that the tuple fits on the returned page, but that
could be deleted.  As it stands, if two backends try to insert a tuple
into the same full page at the same time, both of them will add an
overflow page and we'll end up with 2 overflow pages each containing 1
tuple.

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [HACKERS] Add support for SRF and returning composites to pl/tcl
Next
From: Alvaro Herrera
Date:
Subject: Re: [HACKERS] ALTER TABLE .. ALTER COLUMN .. ERROR: attribute .. haswrong type