1. 19 6月, 2006 1 次提交
    • T
      Increase timeout in statement_timeout test from 1 second to 2 seconds. · f1e671a0
      Tom Lane 提交于
      We have once or twice seen failures suggesting that control didn't get
      to the exception block before the timeout elapsed, which is unlikely
      but not impossible in a parallel regression test (with a dozen other
      backends competing for cycles).  This change doesn't completely prevent
      the problem of course, but it should reduce the probability enough that
      we don't see it anymore.  Per buildfarm results.
      f1e671a0
  2. 18 6月, 2006 1 次提交
  3. 17 6月, 2006 21 次提交
  4. 16 6月, 2006 14 次提交
  5. 15 6月, 2006 3 次提交
    • B
      Done, removed: · f8cdc265
      Bruce Momjian 提交于
      <
      < * Consider padding the spinlock structure to have spinlock registers
      <   on different CPU cache line
      <
      <   http://archives.postgresql.org/pgsql-hackers/2005-10/msg00498.php
      f8cdc265
    • T
      Remove the limit on the number of entries allowed in catcaches, and · 8b9bc234
      Tom Lane 提交于
      remove the infrastructure needed to enforce the limit, ie, the global
      LRU list of cache entries.  On small-to-middling databases this wins
      because maintaining the LRU list is a waste of time.  On large databases
      this wins because it's better to keep more cache entries (we assume
      such users can afford to use some more per-backend memory than was
      contemplated in the Berkeley-era catcache design).  This provides a
      noticeable improvement in the speed of psql \d on a 10000-table
      database, though it doesn't make it instantaneous.
      
      While at it, use per-catcache settings for the number of hash buckets
      per catcache, rather than the former one-size-fits-all value.  It's a
      bit silly to be using the same number of hash buckets for, eg, pg_am
      and pg_attribute.  The specific values I used might need some tuning,
      but they seem to be in the right ballpark based on CATCACHE_STATS
      results from the standard regression tests.
      8b9bc234
    • B
      Add to locale TODO.detail. · e1e133f2
      Bruce Momjian 提交于
      e1e133f2