1. 12 Oct, 2011 7 commits
  2. 11 Oct, 2011 14 commits
  3. 10 Oct, 2011 4 commits
  4. 08 Oct, 2011 1 commit
  5. 06 Oct, 2011 8 commits
  6. 05 Oct, 2011 5 commits
  7. 04 Oct, 2011 1 commit
    • unknown's avatar
      Fix bug lp:856152 · b17c4d3e
      unknown authored
      Analysis:
      The cause of the bug was that the method
      subselect_rowid_merge_engine::partial_match()
      was not designed for re-execution within the
      same query. Specifically, it didn't cleanup
      the bitmap of matching keys after completion.
      
      The test query requires double execution of
      the IN predicate because it first checks the
      predicate as a constant condition. The second
      execution during regular execution used the bitmap
      of matching keys produced by the first execution
      instead of starting with a clean one.
      
      Solution:
      Cleanup the bitmap of matching keys at the end of
      the partial matching procedure.
      
      b17c4d3e