pgsql: Fix results of index-only scans on btree_gist char(N) indexes. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix results of index-only scans on btree_gist char(N) indexes.
Date
Msg-id E1n6Hnl-0003pG-F9@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix results of index-only scans on btree_gist char(N) indexes.

If contrib/btree_gist is used to make a GIST index on a char(N)
(bpchar) column, and that column is retrieved via an index-only
scan, what came out had all trailing spaces removed.  Since
that doesn't happen in any other kind of table scan, this is
clearly a bug.  The cause is that gbt_bpchar_compress() strips
trailing spaces (using rtrim1) before a new index entry is made.
That was probably a good idea when this code was first written,
but since we invented index-only scans, it's not so good.

One answer could be to mark this opclass as incapable of index-only
scans.  But to do so, we'd need an extension module version bump,
followed by manual action by DBAs to install the updated version
of btree_gist.  And it's not really a desirable place to end up,
anyway.

Instead, let's fix the code by removing the unwanted space-stripping
action and adjusting the opclass's comparison logic to ignore
trailing spaces as bpchar normally does.  This will not hinder
cases that work today, since index searches with this logic will
act the same whether trailing spaces are stored or not.  It will
not by itself fix the problem of getting space-stripped results
from index-only scans, of course.  Users who care about that can
REINDEX affected indexes after installing this update, to immediately
replace all improperly-truncated index entries.  Otherwise, it can
be expected that the index's behavior will change incrementally as
old entries are replaced by new ones.

Per report from Alexander Lakhin.  Back-patch to all supported branches.

Discussion: https://postgr.es/m/696c995b-b37f-5526-f45d-04abe713179f@gmail.com

Branch
------
REL_14_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/043c1e1a73aace8b459b3290ff7a50c9b124fb33

Modified Files
--------------
contrib/btree_gist/btree_text.c        | 104 ++++++++++++++++++++++++---------
contrib/btree_gist/expected/char.out   |   6 +-
contrib/btree_gist/expected/char_1.out |   6 +-
3 files changed, 82 insertions(+), 34 deletions(-)


pgsql-committers by date:

Previous
From: Jeff Davis
Date:
Subject: pgsql: Fix pgperlcritic complaint, per buildfarm.
Next
From: Jeff Davis
Date:
Subject: pgsql: More cleanup of a2ab9c06ea.