Thread

Commits

  1. Fix typo in comment.

  1. Typo with pg_multixact/offset in multixact.c

    Michael Paquier <michael.paquier@gmail.com> — 2018-02-05T07:14:04Z

    Hi all,
    
    While hacking some stuff, I bumped into the following:
    --- a/src/backend/access/transam/multixact.c
    +++ b/src/backend/access/transam/multixact.c
    @@ -1932,7 +1932,7 @@ ZeroMultiXactMemberPage(int pageno, bool writeXlog)
      * MaybeExtendOffsetSlru
      *		Extend the offsets SLRU area, if necessary
      *
    - * After a binary upgrade from <= 9.2, the pg_multixact/offset SLRU area might
    + * After a binary upgrade from <= 9.2, the pg_multixact/offsets SLRU area might
      * contain files that are shorter than necessary; this would occur if the old
      * installation had used multixacts beyond the first page (files cannot be
      * copied, because the on-disk representation is different).  pg_upgrade would
    
    Thanks,
    --
    Michael
    
  2. Re: Typo with pg_multixact/offset in multixact.c

    Robert Haas <robertmhaas@gmail.com> — 2018-03-22T17:36:59Z

    On Mon, Feb 5, 2018 at 2:14 AM, Michael Paquier
    <michael.paquier@gmail.com> wrote:
    > While hacking some stuff, I bumped into the following:
    > --- a/src/backend/access/transam/multixact.c
    > +++ b/src/backend/access/transam/multixact.c
    > @@ -1932,7 +1932,7 @@ ZeroMultiXactMemberPage(int pageno, bool writeXlog)
    >   * MaybeExtendOffsetSlru
    >   *             Extend the offsets SLRU area, if necessary
    >   *
    > - * After a binary upgrade from <= 9.2, the pg_multixact/offset SLRU area might
    > + * After a binary upgrade from <= 9.2, the pg_multixact/offsets SLRU area might
    >   * contain files that are shorter than necessary; this would occur if the old
    >   * installation had used multixacts beyond the first page (files cannot be
    >   * copied, because the on-disk representation is different).  pg_upgrade would
    
    Committed.
    
    -- 
    Robert Haas
    EnterpriseDB: http://www.enterprisedb.com
    The Enterprise PostgreSQL Company
    
    
    
  3. Re: Typo with pg_multixact/offset in multixact.c

    Michael Paquier <michael@paquier.xyz> — 2018-03-23T00:20:57Z

    On Thu, Mar 22, 2018 at 01:36:59PM -0400, Robert Haas wrote:
    > Committed.
    
    Thanks.
    --
    Michael