pgsql: Allow btree comparison functions to return INT_MIN. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Allow btree comparison functions to return INT_MIN.
Date
Msg-id E1g8WIL-00071P-Ic@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow btree comparison functions to return INT_MIN.

Historically we forbade datatype-specific comparison functions from
returning INT_MIN, so that it would be safe to invert the sort order
just by negating the comparison result.  However, this was never
really safe for comparison functions that directly return the result
of memcmp(), strcmp(), etc, as POSIX doesn't place any such restriction
on those library functions.  Buildfarm results show that at least on
recent Linux on s390x, memcmp() actually does return INT_MIN sometimes,
causing sort failures.

The agreed-on answer is to remove this restriction and fix relevant
call sites to not make such an assumption; code such as "res = -res"
should be replaced by "INVERT_COMPARE_RESULT(res)".  The same is needed
in a few places that just directly negated the result of memcmp or
strcmp.

To help find places having this problem, I've also added a compile option
to nbtcompare.c that causes some of the commonly used comparators to
return INT_MIN/INT_MAX instead of their usual -1/+1.  It'd likely be
a good idea to have at least one buildfarm member running with
"-DSTRESS_SORT_INT_MIN".  That's far from a complete test of course,
but it should help to prevent fresh introductions of such bugs.

This is a longstanding portability hazard, so back-patch to all supported
branches.

Discussion: https://postgr.es/m/20180928185215.ffoq2xrq5d3pafna@alap3.anarazel.de

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/60cc2414beac4749e0846ce7ce3f8bead20c0745

Modified Files
--------------
contrib/ltree/ltree_op.c               | 11 ++++-
contrib/pgcrypto/imath.c               | 15 +++----
src/backend/access/nbtree/nbtcompare.c | 77 +++++++++++++++++++++-------------
src/backend/access/nbtree/nbtsearch.c  |  2 +-
src/backend/access/nbtree/nbtutils.c   |  4 +-
src/backend/executor/nodeIndexscan.c   |  7 ++--
src/backend/executor/nodeMergeAppend.c |  5 ++-
src/bin/pg_rewind/filemap.c            |  2 +-
src/include/access/nbtree.h            |  3 +-
src/include/c.h                        |  8 ++++
src/include/utils/sortsupport.h        |  7 ++--
11 files changed, 86 insertions(+), 55 deletions(-)


pgsql-committers by date:

Previous
From: David Steele
Date:
Subject: Re: pgsql: Make WAL segment size configurable at initdb time.
Next
From: Bruce Momjian
Date:
Subject: pgsql: doc: update PG 11 release notes