1. 01 Jun, 2007 2 commits
  2. 31 May, 2007 5 commits
  3. 30 May, 2007 14 commits
  4. 29 May, 2007 3 commits
  5. 28 May, 2007 4 commits
  6. 27 May, 2007 7 commits
  7. 26 May, 2007 1 commit
    • Tom Lane's avatar
      Repair two constraint-exclusion corner cases triggered by proving that an · cadb7833
      Tom Lane authored
      inheritance child of an UPDATE/DELETE target relation can be excluded by
      constraints.  I had rearranged some code in set_append_rel_pathlist() to
      avoid "useless" work when a child is excluded, but overdid it and left
      the child with no cheapest_path entry, causing possible failure later
      if the appendrel was involved in a join.  Also, it seems that the dummy
      plan generated by inheritance_planner() when all branches are excluded
      has to be a bit less dummy now than was required in 8.2.
      Per report from Jan Wieck.  Add his test case to the regression tests.
      cadb7833
  8. 25 May, 2007 1 commit
    • Tom Lane's avatar
      Create hooks to let a loadable plugin monitor (or even replace) the planner · 604ffd28
      Tom Lane authored
      and/or create plans for hypothetical situations; in particular, investigate
      plans that would be generated using hypothetical indexes.  This is a
      heavily-rewritten version of the hooks proposed by Gurjeet Singh for his
      Index Advisor project.  In this formulation, the index advisor can be
      entirely a loadable module instead of requiring a significant part to be
      in the core backend, and plans can be generated for hypothetical indexes
      without requiring the creation and rolling-back of system catalog entries.
      
      The index advisor patch as-submitted is not compatible with these hooks,
      but it needs significant work anyway due to other 8.2-to-8.3 planner
      changes.  With these hooks in the core backend, development of the advisor
      can proceed as a pgfoundry project.
      604ffd28
  9. 24 May, 2007 3 commits