From: | Peter Geoghegan <pg(at)bowt(dot)ie> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Harmonize function parameter names for Postgres 18. |
Date: | 2025-04-12 16:08:28 |
Message-ID: | E1u3dPA-003v3B-1q@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Harmonize function parameter names for Postgres 18.
Make sure that function declarations use names that exactly match the
corresponding names from function definitions in a few places. These
inconsistencies were all introduced during Postgres 18 development.
This commit was written with help from clang-tidy, by mechanically
applying the same rules as similar clean-up commits (the earliest such
commit was commit 035ce1fe).
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/a6cab6a78ee58356967a447fa2c6414732856986
Modified Files
--------------
contrib/pg_overexplain/pg_overexplain.c | 2 +-
contrib/postgres_fdw/postgres_fdw.c | 2 +-
src/backend/access/gin/gininsert.c | 6 +++---
src/backend/commands/tablecmds.c | 8 ++++----
src/backend/executor/execPartition.c | 2 +-
src/backend/nodes/queryjumblefuncs.c | 4 ++--
src/backend/storage/buffer/bufmgr.c | 2 +-
src/backend/storage/smgr/md.c | 2 +-
src/backend/utils/adt/acl.c | 2 +-
src/backend/utils/adt/pg_locale_builtin.c | 8 ++++----
src/backend/utils/adt/pg_locale_icu.c | 14 ++++----------
src/backend/utils/mmgr/mcxt.c | 2 +-
src/bin/scripts/reindexdb.c | 2 +-
src/common/unicode_case.c | 2 +-
src/include/commands/explain.h | 2 +-
src/include/libpq/oauth.h | 2 +-
src/include/optimizer/cost.h | 4 ++--
src/include/optimizer/planmain.h | 4 ++--
src/include/port/pg_crc32c.h | 2 +-
src/include/replication/slot.h | 2 +-
src/include/storage/lwlock.h | 4 ++--
src/include/storage/md.h | 2 +-
src/include/utils/pg_locale.h | 8 ++++----
src/include/utils/tuplestore.h | 2 +-
src/test/modules/oauth_validator/fail_validator.c | 2 +-
src/test/modules/oauth_validator/magic_validator.c | 2 +-
src/test/modules/oauth_validator/validator.c | 2 +-
27 files changed, 45 insertions(+), 51 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Geoghegan | 2025-04-12 16:25:01 | clang-tidy complaints |
Previous Message | Michael Paquier | 2025-04-12 04:24:08 | pgsql: Fix instability with WAL fsync test in stats.sql |