1. 09 Jul, 2015 1 commit
    • Monty's avatar
      Speed and code space optimziation: · a6c80143
      Monty authored
      - Cache variables.lc_messages->errmsgs->errmsgs in variables.errmsgs
      
      This gives us 15 byte less code space and 2 memory references for any access to language dependent message,
      of which there are 500 in the server..
      a6c80143
  2. 06 Jul, 2015 1 commit
    • Monty's avatar
      - Renaming variables so that they don't shadow others (After this patch one... · 7332af49
      Monty authored
      - Renaming variables so that they don't shadow others (After this patch one can compile with -Wshadow and get much fewer warnings)
      - Changed ER(ER_...) to ER_THD(thd, ER_...) when thd was known or if there was many calls to current_thd in the same function.
      - Changed ER(ER_..) to ER_THD_OR_DEFAULT(current_thd, ER...) in some places where current_thd is not necessary defined.
      - Removing calls to current_thd when we have access to thd
      
      Part of this is optimization (not calling current_thd when not needed),
      but part is bug fixing for error condition when current_thd is not defined
      (For example on startup and end of mysqld)
      
      Notable renames done as otherwise a lot of functions would have to be changed:
      - In JOIN structure renamed:
         examined_rows -> join_examined_rows
         record_count -> join_record_count
      - In Field, renamed new_field() to make_new_field()
      
      Other things:
      - Added DBUG_ASSERT(thd == tmp_thd) in Item_singlerow_subselect() just to be safe.
      - Removed old 'tab' prefix in JOIN_TAB::save_explain_data() and use members directly
      - Added 'thd' as argument to a few functions to avoid calling current_thd.
      7332af49
  3. 05 Jul, 2015 2 commits
    • Monty's avatar
      8d4d185a
    • Monty's avatar
      Fixes done while working on MDEV-4119: · 86377d07
      Monty authored
      Fixed several optimizer issues relatied to GROUP BY:
      
      a) Refering to a SELECT column in HAVING sometimes calculated it twice, which caused problems with non determinstic functions
      
      b) Removing duplicate fields and constants from GROUP BY was done too late for "using index for group by" optimization to work
      
      c) EXPLAIN SELECT ... GROUP BY did wrongly show 'Using filesort' in some cases involving "Using index for group-by"
      
      
      a) was fixed by:
      - Changed last argument to Item::split_sum_func2() from bool to int to allow more flags
      - Added flag argument to Item::split_sum_func() to allow on to specify if the item was in the SELECT part
      - Mark all split_sum_func() calls from SELECT with SPLIT_SUM_SELECT
      - Changed split_sum_func2() to do nothing if called with an argument that is not a sum function and doesn't include sum functions, if we are not an argument to SELECT.
      
      This ensures that in a case like
      select a*sum(b) as f1 from t1 where a=1 group by c having f1 <= 10;
      
      That 'a' in the SELECT part is stored as a reference in the temporary table togeher with sum(b) while the 'a' in having isn't (not needed as 'a' is already a reference to a column in the result)
      
      b) was fixed by:
      - Added an extra remove_const() pass for GROUP BY arguments before make_join_statistics() in case of one table SELECT.
      
      This allowes get_best_group_min_max() to optimize things better.
      
      c) was fixed by:
      - Added test for group by optimization in JOIN::exec_inner for
        select->quick->get_type() == QUICK_SELECT_I::QS_TYPE_GROUP_MIN_MAX
      
      item.cc:
      - Simplifed Item::split_sum_func2()
        - Split test to make them faster and easier to read
        - Changed last argument to Item::split_sum_func2() from bool to int to allow more flags
        - Added flag argument to Item::split_sum_func() to allow on to specify if the item was in the SELECT part
        - Changed split_sum_func2() to do nothing if called with an argument that is not a sum function and doesn't include sum functions, if we are not an argument to SELECT.
      
      opt_range.cc:
      - Simplified get_best_group_min_max() by calcuating first how many group_by elements.
      - Use join->group instead of join->group_list to test if group by, as join->group_list may be NULL if everything was optimized away.
      
      sql_select.cc:
      - Added an extra remove_const() pass for GROUP BY arguments before make_join_statistics() in case of one table SELECT.
      - Use group instead of group_list to test if group by, as group_list may be NULL if everything was optimized away.
      - Moved printing of "Error in remove_const" to remove_const() instead of having it in caller.
      - Simplified some if tests by re-ordering code.
      - update_depend_map_for_order() and remove_const() fixed to handle the case where make_join_statistics() has not yet been called (join->join_tab is 0 in this case)
      86377d07
  4. 29 Jun, 2015 6 commits
  5. 28 Jun, 2015 6 commits
  6. 27 Jun, 2015 15 commits
  7. 26 Jun, 2015 9 commits