1. 13 8月, 2007 1 次提交
    • T
      Increase the initial size of StringInfo buffers to 1024 bytes (from 256); · 70868c01
      Tom Lane 提交于
      likewise increase the initial size of the scanner's literal buffer to 1024
      (from 128).  Instrumentation of the regression tests suggests that this
      saves a useful amount of repalloc() traffic --- the number of calls occurring
      during one set of tests drops from about 6900 to about 3900.  The old sizes
      were chosen in the late 90's with an eye to machines much smaller than
      are common today.
      70868c01
  2. 12 8月, 2007 1 次提交
  3. 11 8月, 2007 1 次提交
    • T
      Code review for regexp_matches/regexp_split patch. Refactor to avoid assuming · 1b706193
      Tom Lane 提交于
      that cached compiled patterns will still be there when the function is next
      called.  Clean up looping logic, thereby fixing bug identified by Pavel
      Stehule.  Share setup code between the two functions, add some comments, and
      avoid risky mixing of int and size_t variables.  Clean up the documentation a
      tad, and accept all the flag characters mentioned in table 9-19 rather than
      just a subset.
      1b706193
  4. 10 8月, 2007 2 次提交
  5. 09 8月, 2007 4 次提交
    • T
      faa11796
    • T
      Revise postmaster startup/shutdown logic to eliminate the problem that a · bbe3c02d
      Tom Lane 提交于
      constant flow of new connection requests could prevent the postmaster from
      completing a shutdown or crash restart.  This is done by labeling child
      processes that are "dead ends", that is, we know that they were launched only
      to tell a client that it can't connect.  These processes are managed
      separately so that they don't confuse us into thinking that we can't advance
      to the next stage of a shutdown or restart sequence, until the very end
      where we must wait for them to drain out so we can delete the shmem segment.
      Per discussion of a misbehavior reported by Keaton Adams.
      
      Since this code was baroque already, and my first attempt at fixing the
      problem made it entirely impenetrable, I took the opportunity to rewrite it
      in a state-machine style.  That eliminates some duplicated code sections and
      hopefully makes everything a bit clearer.
      bbe3c02d
    • N
      Fix a gradual memory leak in ExecReScanAgg(). Because the aggregation · c556b29a
      Neil Conway 提交于
      hash table is allocated in a child context of the agg node's memory
      context, MemoryContextReset() will reset but *not* delete the child
      context. Since ExecReScanAgg() proceeds to build a new hash table
      from scratch (in a new sub-context), this results in leaking the
      header for the previous memory context. Therefore, use
      MemoryContextResetAndDeleteChildren() instead.
      
      Credit: My colleague Sailesh Krishnamurthy at Truviso for isolating
      the cause of the leak.
      c556b29a
    • T
      Fix thinko in multi-autovac-workers code: validity checks made by · af1022d2
      Tom Lane 提交于
      GUC assign hooks are supposed to be made whether doit is true or not.
      af1022d2
  6. 07 8月, 2007 1 次提交
  7. 06 8月, 2007 2 次提交
  8. 05 8月, 2007 5 次提交
  9. 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
  10. 03 8月, 2007 4 次提交
  11. 02 8月, 2007 4 次提交
  12. 01 8月, 2007 3 次提交
  13. 31 7月, 2007 1 次提交
  14. 28 7月, 2007 1 次提交
  15. 27 7月, 2007 1 次提交
  16. 26 7月, 2007 5 次提交
  17. 25 7月, 2007 1 次提交