]> granicus.if.org Git - postgresql/commit
Fix broken error check in _hash_doinsert.
authorRobert Haas <rhaas@postgresql.org>
Thu, 22 Dec 2016 18:54:40 +0000 (13:54 -0500)
committerRobert Haas <rhaas@postgresql.org>
Thu, 22 Dec 2016 18:58:46 +0000 (13:58 -0500)
commit17742a05110ee0015f2861e9a4e4b1158c7e69cf
tree7f63f9fc98c6d26523764cc50a9e35ffdd27a7eb
parent51126ccdb1ce720b674405e11bcb5e7b8fa902fb
Fix broken error check in _hash_doinsert.

You can't just cast a HashMetaPage to a Page, because the meta page
data is stored after the page header, not at offset 0.  Fortunately,
this didn't break anything because it happens to find hashm_bsize
at the offset at which it expects to find pd_pagesize_version, and
the values are close enough to the same that this works out.

Still, it's a bug, so back-patch to all supported versions.

Mithun Cy, revised a bit by me.
src/backend/access/hash/hashinsert.c