pgsql: Use more consistent *GetDatum() macros for some unsigned numbers

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Use more consistent *GetDatum() macros for some unsigned numbers
Date: 2026-01-14 08:08:09
Message-ID: E1vfvvE-000O6X-1q@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use more consistent *GetDatum() macros for some unsigned numbers

This patch switches some code paths to use GetDatum() macros more in
line with the data types of the variables they manipulate. This set of
changes does not fix a problem, but it is always nice to be more
consistent across the board.

Author: Kirill Reshke <reshkekirill(at)gmail(dot)com>
Reviewed-by: Roman Khapov <rkhapov(at)yandex-team(dot)ru>
Reviewed-by: Yuan Li <carol(dot)li2025(at)outlook(dot)com>
Reviewed-by: Michael Paquier <michael(at)paquier(dot)xyz>
Reviewed-by: Man Zeng <zengman(at)halodbtech(dot)com>
Discussion: https://postgr.es/m/CALdSSPidtC7j3MwhkqRj0K2hyp36ztnnjSt6qzGxQtiePR1dzw@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/6dcfac9696cbb72a975ec964e88b78e6e90870c0

Modified Files
--------------
contrib/pageinspect/btreefuncs.c | 2 +-
contrib/pageinspect/ginfuncs.c | 2 +-
contrib/pageinspect/gistfuncs.c | 4 ++--
contrib/pg_buffercache/pg_buffercache_pages.c | 2 +-
src/backend/access/brin/brin_inclusion.c | 2 +-
src/backend/access/brin/brin_minmax.c | 2 +-
src/backend/access/brin/brin_minmax_multi.c | 2 +-
src/backend/access/gist/gistget.c | 4 ++--
src/backend/utils/adt/lockfuncs.c | 4 ++--
9 files changed, 12 insertions(+), 12 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Álvaro Herrera 2026-01-14 09:14:22 pgsql: Reword confusing comment to avoid "typo fixes"
Previous Message Amit Kapila 2026-01-14 07:22:37 pgsql: Prevent unintended dropping of active replication origins.