From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Some stylistic improvements in toast_save_datum() |
Date: | 2025-09-15 05:50:29 |
Message-ID: | E1uy26f-000mrp-0e@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Some stylistic improvements in toast_save_datum()
Move some variables to a smaller scope. Initialize chunk_data before
storing a pointer to it; this avoids compiler warnings on clang-21, or
respectively us having to work around it by initializing it to zero
before the variable is used (as was done in commit e92677e8633).
Discussion: https://www.postgresql.org/message-id/flat/6604ad6e-5934-43ac-8590-15113d6ae4b1%40eisentraut.org
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/748caa9dcb686a84f239ee2cc08030d7c1efddd4
Modified Files
--------------
src/backend/access/common/toast_internals.c | 39 ++++++++++++-----------------
1 file changed, 16 insertions(+), 23 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Eisentraut | 2025-09-15 06:33:18 | pgsql: jit: fix build with LLVM-21 |
Previous Message | Peter Eisentraut | 2025-09-15 05:39:26 | pgsql: Hide duplicate names from extension views |