1. 06 Jul, 2001 3 commits
  2. 05 Jul, 2001 2 commits
  3. 04 Jul, 2001 7 commits
  4. 03 Jul, 2001 5 commits
  5. 02 Jul, 2001 3 commits
  6. 01 Jul, 2001 1 commit
    • Tom Lane's avatar
      Under new theory of operation wherein postmaster forks children · 109d50dd
      Tom Lane authored
      immediately, we will fork a child even if the database state does not
      permit connections to be accepted (eg, we are in recovery mode).
      The child process will correctly reject the connection and exit as
      soon as it's finished collecting the connection request message.
      However, this means that reaper() must be prepared to see child
      process exit signals even while it's waiting for startup or shutdown
      process to finish.  As was, a connection request arriving during a
      database recovery or shutdown would cause postmaster abort.
      109d50dd
  7. 30 Jun, 2001 6 commits
  8. 29 Jun, 2001 10 commits
  9. 28 Jun, 2001 2 commits
  10. 27 Jun, 2001 1 commit
    • Tom Lane's avatar
      Install infrastructure for shared-memory free space map. Doesn't actually · e0c9301c
      Tom Lane authored
      do anything yet, but it has the necessary connections to initialization
      and so forth.  Make some gestures towards allowing number of blocks in
      a relation to be BlockNumber, ie, unsigned int, rather than signed int.
      (I doubt I got all the places that are sloppy about it, yet.)  On the
      way, replace the hardwired NLOCKS_PER_XACT fudge factor with a GUC
      variable.
      e0c9301c