pgsql: hash: Refactor overflow page allocation.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: hash: Refactor overflow page allocation.
Date: 2017-02-27 17:32:59
Message-ID: E1ciPAR-0003KG-Sa@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

hash: Refactor overflow page allocation.

As with commit b0f18cb77f50a54e997d857d592f6a511617f52c, the goal
here is to move all of the related page modifications to a single
section of code, in preparation for adding write-ahead logging.

Amit Kapila, with slight changes by me. The larger patch series
of which this is a part has been reviewed and tested by Álvaro
Herrera, Ashutosh Sharma, Mark Kirkwood, Jeff Janes, and Jesper
Pedersen, all of whom should also have been credited in the
previous commit message.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/30df93f698d016d086e8961aa6c6076b37ea0ef4

Modified Files
--------------
src/backend/access/hash/hashovfl.c | 251 ++++++++++++++++++++++---------------
src/include/access/hash.h | 1 +
2 files changed, 153 insertions(+), 99 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2017-02-27 22:22:41 pgsql: Allow index AMs to return either HeapTuple or IndexTuple format
Previous Message Robert Haas 2017-02-27 17:10:02 pgsql: hash: Refactor bucket squeeze code.