Re: Switch buffile.c/h to use pgoff_t
Michael Paquier <michael@paquier.xyz>
From: Michael Paquier <michael@paquier.xyz>
To: Chao Li <li.evan.chao@gmail.com>
Cc: Postgres hackers <pgsql-hackers@lists.postgresql.org>, Bryan Green <dbryan.green@gmail.com>
Date: 2025-12-24T06:15:22Z
Lists: pgsql-hackers
On Tue, Dec 23, 2025 at 10:59:45AM +0800, Chao Li wrote: > I’ve attached a small patch along these lines. It compiles without > warnings, and "make check" passes on my side. What do you think? I don't think it is right. bytestowrite is not a file offset, and the code has been using an int due to BufFile->nbytes. This leads to a more confusing result. -- Michael