pgsql: Fix hash_update_hash_key() to handle same-bucket case correctly. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix hash_update_hash_key() to handle same-bucket case correctly.
Date
Msg-id E1TuwiI-00077y-Ae@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix hash_update_hash_key() to handle same-bucket case correctly.

Original coding would corrupt the hashtable if the item being updated was
at the end of its bucket chain and the new hash key hashed to that same
bucket.  Diagnosis and fix by Heikki Linnakangas.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/1b794d3f3286036eec1d09d5cbea989162657331

Modified Files
--------------
src/backend/utils/hash/dynahash.c |   27 +++++++++++++++++++--------
1 files changed, 19 insertions(+), 8 deletions(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: Return value of lseek() can be negative on failure.
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Give a proper error message if connecting to incompatible server