pgsql: Fix gin_desc routine to match the WAL format. - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Fix gin_desc routine to match the WAL format.
Date
Msg-id E1Vm7iy-0006el-Of@gemulon.postgresql.org
Whole thread Raw
List 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(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix latent(?) race condition in LockReleaseAll.
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Another gin_desc fix.