1. 03 Nov, 2005 6 commits
  2. 02 Nov, 2005 1 commit
  3. 01 Nov, 2005 3 commits
  4. 31 Oct, 2005 3 commits
  5. 30 Oct, 2005 3 commits
  6. 29 Oct, 2005 4 commits
  7. 28 Oct, 2005 7 commits
  8. 27 Oct, 2005 9 commits
  9. 26 Oct, 2005 3 commits
  10. 25 Oct, 2005 1 commit
    • Tom Lane's avatar
      Fix longstanding bug that would sometimes let the planner generate a bad plan · ddb4015e
      Tom Lane authored
      for an outer join; symptom is bogus error "RIGHT JOIN is only supported with
      merge-joinable join conditions".  Problem was that select_mergejoin_clauses
      did its tests in the wrong order.  We need to force left join not right join
      for a merge join when there are non-mergeable join clauses; but the test for
      this only accounted for mergejoinability of the clause operator, and not
      whether the left and right Vars were of the proper relations.  Per report
      from Jean-Pierre Pelletier.
      ddb4015e