Thread

Commits

  1. Fix grammar of a comment in bufmgr.c

  1. report a typo in WaitReadBuffers

    Junwang Zhao <zhjwpku@gmail.com> — 2024-10-20T03:20:34Z

    While reading the stream read interfaces, I found a typo.
    
    /*
    * How many neighboring-on-disk blocks can we can scatter-read into
    * other buffers at the same time? In this case we don't wait if we
    
    Seems the second *can* is not necessary.
    
    -- 
    Regards
    Junwang Zhao
    
    
    
    
  2. Re: report a typo in WaitReadBuffers

    Michael Paquier <michael@paquier.xyz> — 2024-10-20T07:06:42Z

    On Sun, Oct 20, 2024 at 11:20:34AM +0800, Junwang Zhao wrote:
    > /*
    > * How many neighboring-on-disk blocks can we can scatter-read into
    > * other buffers at the same time? In this case we don't wait if we
    > 
    > Seems the second *can* is not necessary.
    
    Yes, you are right.  This reads better without the second "can".
    --
    Michael
    
  3. Re: report a typo in WaitReadBuffers

    Michael Paquier <michael@paquier.xyz> — 2024-10-21T02:32:23Z

    On Sun, Oct 20, 2024 at 04:06:42PM +0900, Michael Paquier wrote:
    > Yes, you are right.  This reads better without the second "can".
    
    Fixed that as well.
    --
    Michael