pgsql: Remove obsolete SAMESIGN macro - Mailing list pgsql-committers

From Richard Guo
Subject pgsql: Remove obsolete SAMESIGN macro
Date
Msg-id E1vxbWM-002GvF-1w@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Remove obsolete SAMESIGN macro

The SAMESIGN macro was historically used as a helper for manual
integer overflow checks.  However, since commit 4d6ad3125 introduced
overflow-aware integer operations, this manual sign-checking logic is
no longer necessary.

The macro remains defined in brin_minmax_multi.c and timestamp.c, but
is not used in either file.  This patch removes these definitions to
clean things up.

Author: Richard Guo <guofenglinux@gmail.com>
Discussion: https://postgr.es/m/CAMbWs4-NL3J3hQ3LzrwV-YUkQC18P+jM7ZiegQyAHzgdZev2qg@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/access/brin/brin_minmax_multi.c | 2 --
src/backend/utils/adt/timestamp.c           | 2 --
2 files changed, 4 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Add some tests for CREATE OR REPLACE VIEW with column additions
Next
From: Michael Paquier
Date:
Subject: pgsql: Change default value of default_toast_compression to "lz4", when