1. 14 Nov, 2008 16 commits
  2. 13 Nov, 2008 9 commits
  3. 12 Nov, 2008 12 commits
  4. 11 Nov, 2008 3 commits
    • Magnus Hagander's avatar
      Mention the tup_fetched column in pg_stat_database. · bd059c2d
      Magnus Hagander authored
      Greg Sabino Mullane
      bd059c2d
    • Tom Lane's avatar
      Ensure that the phrels sets of PlaceHolderVars appearing in an AppendRelInfo's · 0d7099d2
      Tom Lane authored
      translated_vars list get updated when pulling up an appendrel member.  It's
      not clear that this really matters at present, since relatively little gets
      done with the outputs of an appendrel child relation; but it probably will
      come back to bite us sometime if we leave them with the wrong values.
      0d7099d2
    • Tom Lane's avatar
      Get rid of adjust_appendrel_attr_needed(), which has been broken ever since · 04366799
      Tom Lane authored
      we extended the appendrel mechanism to support UNION ALL optimization.  The
      reason nobody noticed was that we are not actually using attr_needed data for
      appendrel children; hence it seems more reasonable to rip it out than fix it.
      Back-patch to 8.2 because an Assert failure is possible in corner cases.
      Per examination of an example from Jim Nasby.
      
      In HEAD, also get rid of AppendRelInfo.col_mappings, which is quite inadequate
      to represent UNION ALL situations; depend entirely on translated_vars instead.
      04366799