pgsql: In basebackup.c, refactor to create read_file_data_into_buffer.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: In basebackup.c, refactor to create read_file_data_into_buffer.
Date: 2023-10-03 15:01:18
Message-ID: E1qngti-007JiS-ND@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

In basebackup.c, refactor to create read_file_data_into_buffer.

This further reduces the length and complexity of sendFile(),
hopefully make it easier to understand and modify. In addition
to moving some logic into a new function, I took this opportunity
to make a few slight adjustments to sendFile() itself, including
renaming the 'len' variable to 'bytes_done', since we use it to represent
the number of bytes we've already handled so far, not the total
length of the file.

Patch by me, reviewed by David Steele.

Discussion: http://postgr.es/m/CA+TgmoYt5jXH4U6cu1dm9Oe2FTn1aae6hBNhZzJJjyjbE_zYig@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c2ba3fdea5938dff96ca32ed7a4a83c8ff5f188d

Modified Files
--------------
src/backend/backup/basebackup.c | 231 +++++++++++++++++++++++-----------------
1 file changed, 133 insertions(+), 98 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2023-10-03 15:41:51 pgsql: Add some notes about why "ALTER TYPE enum DROP VALUE" is hard.
Previous Message Robert Haas 2023-10-03 14:47:50 pgsql: In basebackup.c, refactor to create verify_page_checksum.