1. 17 12月, 2006 1 次提交
    • B
      Move entry into CLUSTER section: · 6874fb90
      Bruce Momjian 提交于
      < * Make CLUSTER preserve recently-dead tuples per MVCC requirements
      > 	o Make CLUSTER preserve recently-dead tuples per MVCC requirements
      6874fb90
  2. 16 12月, 2006 4 次提交
    • A
      enable \timing oputput for \copy commands · 7bdc55cc
      Andrew Dunstan 提交于
      7bdc55cc
    • T
      Fix some planner bugs exposed by reports from Arjen van der Meijden. These · 281f4018
      Tom Lane 提交于
      are all in new-in-8.2 logic associated with indexability of ScalarArrayOpExpr
      (IN-clauses) or amortization of indexscan costs across repeated indexscans
      on the inside of a nestloop.  In particular:
      
      Fix some logic errors in the estimation for multiple scans induced by a
      ScalarArrayOpExpr indexqual.
      
      Include a small cost component in bitmap index scans to reflect the costs of
      manipulating the bitmap itself; this is mainly to prevent a bitmap scan from
      appearing to have the same cost as a plain indexscan for fetching a single
      tuple.
      
      Also add a per-index-scan-startup CPU cost component; while prior releases
      were clearly too pessimistic about the cost of repeated indexscans, the
      original 8.2 coding allowed the cost of an indexscan to effectively go to zero
      if repeated often enough, which is overly optimistic.
      
      Pay some attention to index correlation when estimating costs for a nestloop
      inner indexscan: this is significant when the plan fetches multiple heap
      tuples per iteration, since high correlation means those tuples are probably
      on the same or adjacent heap pages.
      281f4018
    • T
      Put JST back into the default set of timezone abbreviations; · 782d68e3
      Tom Lane 提交于
      was removed in an unexplainable moment of brain fade.
      782d68e3
    • B
      Back out double-run of PDF/PS output. Requires building bookindex.sgml · 421c1ca4
      Bruce Momjian 提交于
      properly.
      
      Remove SGML docs about openjade performance patch, and instead add
      comment in style sheet where indenting code is commented out.
      
      Backpatch to 8.2.X.
      421c1ca4
  3. 15 12月, 2006 9 次提交
  4. 13 12月, 2006 7 次提交
  5. 12 12月, 2006 2 次提交
  6. 11 12月, 2006 3 次提交
  7. 10 12月, 2006 3 次提交
  8. 09 12月, 2006 2 次提交
    • T
      Remove the logId/logSeg fields from pg_control, because they are not needed · 0cb91ccb
      Tom Lane 提交于
      in normal operation, and we can avoid rewriting pg_control at every log
      segment switch if we don't insist that these values be valid.  Reducing
      the number of pg_control updates is a good idea for both performance and
      reliability.  It does make pg_resetxlog's life a bit harder, but that seems
      a good tradeoff; and anyway the change to pg_resetxlog amounts to automating
      something people formerly needed to do by hand, namely look at the existing
      pg_xlog files to make sure the new WAL start point was past them.
      
      In passing, change the wording of xlog.c's "database system was interrupted"
      messages: describe the pg_control timestamp as "last known up at" rather than
      implying it is the exact time of service interruption.  With this change the
      timestamp will generally be the time of the last checkpoint, which could be
      many minutes before the failure; and we've already seen indications that
      people tend to misinterpret the old wording.
      
      initdb forced due to change in pg_control layout.  Simon Riggs and Tom Lane
      0cb91ccb
    • T
      Fix broken markup. · 98cacd1a
      Tom Lane 提交于
      98cacd1a
  9. 08 12月, 2006 3 次提交
  10. 07 12月, 2006 3 次提交
    • T
      Fix planning of SubLinks to ensure that Vars generated from transformation of · b307d7a6
      Tom Lane 提交于
      a sublink's test expression have the correct vartypmod, rather than defaulting
      to -1.  There's at least one place where this is important because we're
      expecting these Vars to be exactly equal() to those appearing in the subplan
      itself.  This is a pretty klugy solution --- it would likely be cleaner to
      change Param nodes to include a typmod field --- but we can't do that in the
      already-released 8.2 branch.
      Per bug report from Hubert Fongarnand.
      b307d7a6
    • N
      Add a txn_start column to pg_stat_activity. This makes it easier to · 886a02d1
      Neil Conway 提交于
      identify long-running transactions. Since we already need to record
      the transaction-start time (e.g. for now()), we don't need any
      additional system calls to report this information.
      
      Catversion bumped, initdb required.
      886a02d1
    • N
      Various improvements to the GUC description strings. Punctuate and · dd740e1f
      Neil Conway 提交于
      capitalize the strings like sentences. Remove unnecessarily
      specific descriptions of the units used by GUC variables, since
      we now allow any reasonable unit to be specified.
      dd740e1f
  11. 06 12月, 2006 3 次提交