1. 13 Jan, 2011 8 commits
  2. 12 Jan, 2011 3 commits
  3. 11 Jan, 2011 8 commits
  4. 10 Jan, 2011 4 commits
  5. 09 Jan, 2011 14 commits
  6. 08 Jan, 2011 3 commits
    • Michael Meskes's avatar
    • Tom Lane's avatar
      Remove pg_am.amindexnulls. · 7e2f9062
      Tom Lane authored
      The only use we have had for amindexnulls is in determining whether an
      index is safe to cluster on; but since the addition of the amclusterable
      flag, that usage is pretty redundant.
      
      In passing, clean up assorted sloppiness from the last patch that touched
      pg_am.h: Natts_pg_am was wrong, and ambuildempty was not documented.
      7e2f9062
    • Tom Lane's avatar
      Refactor GIN's handling of duplicate search entries. · 56a57473
      Tom Lane authored
      The original coding could combine duplicate entries only when they
      originated from the same qual condition.  In particular it could not
      combine cases where multiple qual conditions all give rise to full-index
      scan requests, which is an expensive case well worth optimizing.  Refactor
      so that duplicates are recognized across all the quals.
      56a57473