Thread

Commits

  1. Fix bogus log message when starting from a cleanly shut down state.

  1. check-world has suddenly started spewing stuff on stderr

    Tom Lane <tgl@sss.pgh.pa.us> — 2022-02-16T17:04:22Z

    $ make check-world >/dev/null
    2022-02-16 11:57:47.548 EST [3339702] LOG:  database system was not properly shut down; automatic recovery in progress
    2022-02-16 11:57:47.612 EST [3339713] LOG:  database system was not properly shut down; automatic recovery in progress
    2022-02-16 11:57:59.379 EST [3345366] LOG:  database system was not properly shut down; automatic recovery in progress
    2022-02-16 11:57:59.445 EST [3345429] LOG:  database system was not properly shut down; automatic recovery in progress
    
    Whoever is responsible for that, please fix it.
    
    			regards, tom lane
    
    
    
    
  2. Re: check-world has suddenly started spewing stuff on stderr

    Heikki Linnakangas <hlinnaka@iki.fi> — 2022-02-16T20:17:10Z

    On 16/02/2022 19:04, Tom Lane wrote:
    > $ make check-world >/dev/null
    > 2022-02-16 11:57:47.548 EST [3339702] LOG:  database system was not properly shut down; automatic recovery in progress
    > 2022-02-16 11:57:47.612 EST [3339713] LOG:  database system was not properly shut down; automatic recovery in progress
    > 2022-02-16 11:57:59.379 EST [3345366] LOG:  database system was not properly shut down; automatic recovery in progress
    > 2022-02-16 11:57:59.445 EST [3345429] LOG:  database system was not properly shut down; automatic recovery in progress
    > 
    > Whoever is responsible for that, please fix it.
    
    That's on me. 'initdb' started to print those after the xlog.c splitting 
    patch.
    
    Something went wrong in bootstrapping apparently. I'll investigate tomorrow.
    
    - Heikki