pgsql: Adjust the integer overflow tests in the numeric code. - Mailing list pgsql-committers

From Dean Rasheed
Subject pgsql: Adjust the integer overflow tests in the numeric code.
Date
Msg-id E1mC6au-000224-Lf@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Adjust the integer overflow tests in the numeric code.

Formerly, the numeric code tested whether an integer value of a larger
type would fit in a smaller type by casting it to the smaller type and
then testing if the reverse conversion produced the original value.
That's perfectly fine, except that it caused a test failure on
buildfarm animal castoroides, most likely due to a compiler bug.

Instead, do these tests by comparing against PG_INT16/32_MIN/MAX. That
matches existing code in other places, such as int84(), which is more
widely tested, and so is less likely to go wrong.

While at it, add regression tests covering the numeric-to-int8/4/2
conversions, and adjust the recently added tests to the style of
434ddfb79a (on the v11 branch) to make failures easier to diagnose.

Per buildfarm via Tom Lane, reviewed by Tom Lane.

Discussion: https://postgr.es/m/2394813.1628179479%40sss.pgh.pa.us

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/5b7b92ad74f2eeb4ac166bb45be31df95e574b3b

Modified Files
--------------
src/backend/utils/adt/numeric.c       | 26 +++++---------
src/test/regress/expected/numeric.out | 65 ++++++++++++++++++++++++++++++-----
src/test/regress/sql/numeric.sql      | 22 +++++++++---
3 files changed, 84 insertions(+), 29 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Add missing message punctuation
Next
From: Tom Lane
Date:
Subject: pgsql: Don't elide casting to typmod -1.