1. 05 8月, 2007 4 次提交
  2. 04 8月, 2007 3 次提交
    • T
      Fix a problem in my recent patch to initialize cancel_key for autovac workers · 0b9d3d4d
      Tom Lane 提交于
      as well as regular backends: if no regular backend launches before the autovac
      launcher tries to start an autovac worker, the postmaster would get an Assert
      fault due to calling PostmasterRandom before random_seed was initialized.
      Cleanest solution seems to be to take the initialization of random_seed out
      of ServerLoop and let PostmasterRandom do it for itself.
      0b9d3d4d
    • T
      Switch over to using the src/timezone functions for formatting timestamps · bdd6b622
      Tom Lane 提交于
      displayed in the postmaster log.  This avoids Windows-specific problems with
      localized time zone names that are in the wrong encoding, and generally seems
      like a good idea to forestall other potential platform-dependent issues.
      To preserve the existing behavior that all backends will log in the same time
      zone, create a new GUC variable log_timezone that can only be changed on a
      system-wide basis, and reference log-related calculations to that zone instead
      of the TimeZone variable.
      
      This fixes the issue reported by Hiroshi Saito that timestamps printed by
      xlog.c startup could be improperly localized on Windows.  We still need a
      simpler patch for that problem in the back branches, however.
      bdd6b622
    • T
      Fix some sloppiness in the recent multiple-autovacuum-worker patch. It was · 73852bd5
      Tom Lane 提交于
      not bothering to initialize is_autovacuum for regular backends, meaning there
      was a significant chance of the postmaster prematurely sending them SIGTERM
      during database shutdown.  Also, leaving the cancel key unset for an autovac
      worker meant that any client could send it SIGINT, which doesn't sound
      especially good either.
      73852bd5
  3. 03 8月, 2007 4 次提交
  4. 02 8月, 2007 4 次提交
  5. 01 8月, 2007 3 次提交
  6. 31 7月, 2007 1 次提交
  7. 28 7月, 2007 1 次提交
  8. 27 7月, 2007 1 次提交
  9. 26 7月, 2007 5 次提交
  10. 25 7月, 2007 6 次提交
  11. 24 7月, 2007 7 次提交
  12. 23 7月, 2007 1 次提交