pgsql: Fix some compiler warnings

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix some compiler warnings
Date: 2025-12-05 03:31:29
Message-ID: E1vRMXZ-002sEJ-0O@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix some compiler warnings

Some of the buildfarm members with some old gcc versions have been
complaining about an always-true test for a NULL pointer caused by a
combination of SOFT_ERROR_OCCURRED() and a local ErrorSaveContext
variable.

These warnings are taken care of by removing SOFT_ERROR_OCCURRED(),
switching to a direct variable check, like 56b1e88c804b.

Oversights in e1405aa5e3ac and 44eba8f06e55.

Reported-by: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Discussion: https://postgr.es/m/1341064.1764895052@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/7bc88c3d6f3af3af5330c0e209c8a3c411267d00

Modified Files
--------------
src/backend/utils/adt/pg_dependencies.c | 6 +++---
src/backend/utils/adt/pg_ndistinct.c | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Amit Kapila 2025-12-05 04:22:54 pgsql: Rename column slotsync_skip_at to slotsync_last_skip.
Previous Message Michael Paquier 2025-12-05 00:23:15 pgsql: Show version of nodes in output of TAP tests