Обсуждение: pgsql: Fix hash_update_hash_key() to handle same-bucket case correctly.

Поиск
Список
Период
Сортировка

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

От
Tom Lane
Дата:
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(-)