pgsql: Fix gist_bool_ops to use gbtreekey2 - Mailing list pgsql-committers

From Tomas Vondra
Subject pgsql: Fix gist_bool_ops to use gbtreekey2
Date
Msg-id E1mjsdf-0003HV-GY@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix gist_bool_ops to use gbtreekey2

Commit 57e3c5160b added a new GiST bool opclass, but it used gbtreekey4
to store the data, which left two bytes undefined, as reported by skink,
our valgrind animal. There was a bit more confusion, because the opclass
also used gbtreekey8 in the definition.

Fix by defining a new gbtreekey2 struct, and using it in all the places.

Discussion: https://postgr.es/m/CAE2gYzyDKJBZngssR84VGZEN=Ux=V9FV23QfPgo+7-yYnKKg4g@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e2fbb883720aa222f61eb9f3affad1c63bac7cbb

Modified Files
--------------
contrib/btree_gist/btree_bool.c             |  2 +-
contrib/btree_gist/btree_gist--1.6--1.7.sql | 23 +++++++++++++++++++----
2 files changed, 20 insertions(+), 5 deletions(-)


pgsql-committers by date:

Previous
From: Robert Haas
Date:
Subject: Re: pgsql: Change ThisTimeLineID from a global variable to a local variable
Next
From: David Rowley
Date:
Subject: pgsql: Fix incorrect hash equality operator bug in Memoize