1. 04 6月, 2007 4 次提交
  2. 03 6月, 2007 2 次提交
  3. 02 6月, 2007 9 次提交
  4. 01 6月, 2007 6 次提交
    • T
      Fix several hash functions that were taking chintzy shortcuts instead of · 1f559b7d
      Tom Lane 提交于
      delivering a well-randomized hash value.  I got religion on this after
      observing that performance of multi-batch hash join degrades terribly if the
      higher-order bits of hash values aren't random, as indeed was true for say
      hashes of small integer values.  It's now expected and documented that hash
      functions should use hash_any or some comparable method to ensure that all
      bits of their output are about equally random.
      
      initdb forced because this change invalidates existing hash indexes.  For the
      same reason, this isn't back-patchable; the hash join performance problem
      will get a band-aid fix in the back branches.
      1f559b7d
    • B
      Wording improvement. · 397d00af
      Bruce Momjian 提交于
      397d00af
    • B
      Update FAQ_DEV URL to output for text format. · 4dc63193
      Bruce Momjian 提交于
      4dc63193
    • B
    • T
      The shortcut exit that I recently added to ExecInitIndexScan() for · cc3e9dee
      Tom Lane 提交于
      EXPLAIN-only operation was a little too short; it skipped initializing the
      node's result tuple type, which may be needed depending on what's above the
      indexscan node.  Call ExecAssignResultTypeFromTL before exiting.  (For good
      luck I moved up the ExecAssignScanProjectionInfo call as well, so that
      everything except indexscan-specific initialization will still be done.)
      Per example from Grant Finnemore.
      cc3e9dee
    • T
      Change build_index_pathkeys() so that the expressions it builds to represent · 10f719af
      Tom Lane 提交于
      index key columns always have the type expected by the index's associated
      operators, ie, we add RelabelType nodes when dealing with binary-compatible
      index opclasses.  This is needed to get varchar indexes to play nicely with
      the new EquivalenceClass machinery, as per recent gripe from Josh Berkus that
      CVS HEAD was failing to match a varchar index column to a constant restriction
      in the query.
      
      It seems likely that this change will allow removal of a lot of ugly ad-hoc
      RelabelType-stripping that the planner has traditionally done while matching
      expressions to other expressions, but I'll worry about that some other day.
      10f719af
  5. 31 5月, 2007 17 次提交
  6. 29 5月, 2007 2 次提交