pgsql: Fix gin_desc routine to match the WAL format.

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix gin_desc routine to match the WAL format.
Date: 2013-11-28 19:58:08
Message-ID: E1Vm7iy-0006el-Of@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix gin_desc routine to match the WAL format.

In the GIN incomplete-splits patch, I used BlockIdDatas to store the block
number of left and right children, when inserting a downlink after a split
to an internal page posting list page. But gin_desc thought they were stored
as BlockNumbers.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/97c19e6c38ebc5e300539f6985ef3e05398c8f46

Modified Files
--------------
src/backend/access/rmgrdesc/gindesc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2013-11-28 21:37:47 pgsql: Another gin_desc fix.
Previous Message Tom Lane 2013-11-28 17:18:17 pgsql: Fix latent(?) race condition in LockReleaseAll.