| From: | Michael Paquier <michael(at)paquier(dot)xyz> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: Use more consistently int64 for page numbers in SLRU-related cod |
| Date: | 2024-07-23 09:00:18 |
| Message-ID: | E1sWBNa-000peS-DL@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Use more consistently int64 for page numbers in SLRU-related code
clog.c, async.c and predicate.c included some SLRU page numbers still
handled as 4-byte integers, while int64 should be used for this purpose.
These holes have been introduced in 4ed8f0913bfd, that has introduced
the use of 8-byte integers for SLRU page numbers, still forgot about the
code paths updated by this commit.
Reported-by: Noah Misch
Author: Aleksander Alekseev, Michael Paquier
Discussion: https://postgr.es/m/20240626002747.dc.nmisch@google.com
Backpatch-through: 17
Branch
------
REL_17_STABLE
Details
-------
https://git.postgresql.org/pg/commitdiff/165ea79a60774a0e287bfc5dc07363194c6d58df
Modified Files
--------------
src/backend/access/transam/clog.c | 4 ++--
src/backend/commands/async.c | 22 +++++++++++-----------
src/backend/storage/lmgr/predicate.c | 6 +++---
3 files changed, 16 insertions(+), 16 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Noah Misch | 2024-07-23 12:32:42 | pgsql: Fix private struct field name to match the code using it. |
| Previous Message | Peter Eisentraut | 2024-07-23 08:29:12 | pgsql: ldapurl is supported with simple bind |