1. 14 Jan, 2011 6 commits
  2. 13 Jan, 2011 4 commits
  3. 25 Dec, 2010 1 commit
  4. 21 Dec, 2010 2 commits
  5. 20 Dec, 2010 1 commit
  6. 19 Dec, 2010 1 commit
  7. 17 Dec, 2010 2 commits
  8. 16 Dec, 2010 3 commits
  9. 15 Dec, 2010 1 commit
  10. 14 Dec, 2010 1 commit
    • unknown's avatar
      Fix LP BUG#685411 · 766df925
      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.
      766df925
  11. 13 Dec, 2010 2 commits
  12. 11 Dec, 2010 2 commits
  13. 10 Dec, 2010 1 commit
  14. 08 Dec, 2010 2 commits
    • Sergey Petrunya's avatar
      BUG#671340: Diverging results in with mrr_sort_keys=ON|OFF and join_cache_level=5 · 019ccf14
      Sergey Petrunya authored
      - Make Mrr_ordered_index_reader() save the rowid across scan interruptions
      
      Also
      - Fix compiler warning for setup_buffer_sizes()
      - Add commented key_copy/key_restore for better handling of a similar issue
        with index record being destroyed by scan interruption (which causes 
        incorrect evaluation of pushed index condition later on).
      019ccf14
    • Michael Widenius's avatar
      Fixed test results for windows builds · 2fc79e2d
      Michael Widenius authored
      Fixed compiler warning
      
      mysql-test/r/named_pipe.result:
        Fixed test results for windows builds
      mysql-test/r/shm.result:
        Fixed test results for windows builds
      sql/item_cmpfunc.cc:
        Fixed compiler warning about uninitialized "first"
      2fc79e2d
  15. 06 Dec, 2010 11 commits