]> 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 19:15:52 +0000 (14:15 -0500)
commitde651a6e5db25d462bde0a47cb4f8f45c45a6a6d
tree8f4ca7ad8230e0540019e963ca6e61c790e4b98a
parent44de099f89c2a2d94c78f80f09555fd9b5792583
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