pgsql: Fix new-to-v19 -Wshadow warnings

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix new-to-v19 -Wshadow warnings
Date: 2026-04-23 04:49:49
Message-ID: E1wFm0b-002GKH-0e@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix new-to-v19 -Wshadow warnings

There's some talk about upgrading our current -Wshadow=compatible-local
up to -Wshadow. There's some pending questions as to whether the churn
and extra backpatching pain are worthwhile for doing all of them. We
can't use the latter argument for ones that are new to v19, providing we
fix them now. So let's fix those ones so that the problem is not any
worse for if we decide to fix the remainder for v20.

Author: Chao Li <li(dot)evan(dot)chao(at)gmail(dot)com>
Reviewed-by: Peter Smith <smithpb2250(at)gmail(dot)com>
Reviewed-by: Yuchen Li <liyuchen_xyz(at)163(dot)com>
Discussion: https://postgr.es/m/CAApHDvp=rx5GxM=yW8QhFF3noXtYt7LkOxJ7zkaPOzpti4Gm8w@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/4f0cbc6fb5df6dec84482d0bf0ff2d2d4be58132

Modified Files
--------------
src/backend/commands/tablecmds.c | 28 ++++++++++++++--------------
src/backend/commands/wait.c | 12 ++++++------
src/backend/postmaster/datachecksum_state.c | 8 ++++----
src/bin/pg_dump/pg_dumpall.c | 26 ++++++++++++--------------
src/bin/psql/describe.c | 12 ++++++------
5 files changed, 42 insertions(+), 44 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Previous Message Jeff Davis 2026-04-22 19:24:45 Re: pgsql: Perform provider-specific initialization in new functions.