1. 29 Dec, 2010 1 commit
  2. 28 Dec, 2010 3 commits
  3. 27 Dec, 2010 2 commits
  4. 25 Dec, 2010 1 commit
  5. 24 Dec, 2010 1 commit
  6. 23 Dec, 2010 1 commit
  7. 22 Dec, 2010 1 commit
    • Igor Babaev's avatar
      Fixed LP bug #670380. · a095346a
      Igor Babaev authored
      Lifted the limitation that hash join could not be used over 
      varchar fields with non-binary collation.
      a095346a
  8. 21 Dec, 2010 2 commits
  9. 20 Dec, 2010 2 commits
  10. 19 Dec, 2010 2 commits
  11. 17 Dec, 2010 3 commits
  12. 16 Dec, 2010 3 commits
  13. 15 Dec, 2010 1 commit
  14. 14 Dec, 2010 1 commit
    • unknown's avatar
      Fix LP BUG#685411 · 4f28dcbe
      unknown authored
      Analysis:
      The assert failed because st_select_lex::print() was called for subqueries
      as follows:
      
      Item_subselect::print() ->
        subselect_single_select_engine::print() -> st_select_lex::print()
      
      It was Item_subselect::fix_fields() that set the thd by calling set_thd(),
      so when this print() was called before fix_fields(), subselect_engine::thd
      was NULL.
      
      Solution:
      The patch makes all constructors of all subselect_engine classes to take
      a THD parameter. The default subselect_single_select_engine engine is created
      early during parse time, in the Item_subselect::init call, so we pass the
      correct THD object already at this point.
      4f28dcbe
  15. 13 Dec, 2010 5 commits
  16. 11 Dec, 2010 4 commits
  17. 10 Dec, 2010 6 commits
  18. 09 Dec, 2010 1 commit
    • Igor Babaev's avatar
      Addemdum for bug #685952. · afcefa97
      Igor Babaev authored
      Also:
      Changed the value of TIME_FOR_COMPARE_ROWID to make it the same as for MWL 21.
      Changed some queries in range_vs_index_merge.test to make them generate
      the same plans as earlier.
      
      afcefa97