1. 29 Sep, 2006 1 commit
    • evgen@moonbone.local's avatar
      Fixed bug#20825: rollup puts non-equal values together · 0c9f941b
      evgen@moonbone.local authored
      Fix for bug 7894 replaces a field(s) in a non-aggregate function with a item
      reference if such a field was specified in the GROUP BY clause in order to
      get a correct result.
      When ROLLUP is involved this lead to a wrong result due to value of a such
      field is got through a copy function and copying happens after the function
      evaluation.
      Such replacement isn't needed if grouping is also done by such a function.
      
      The change_group_ref() function now isn't called for a function present in
      the group list.
      0c9f941b
  2. 28 Sep, 2006 1 commit
  3. 27 Sep, 2006 2 commits
  4. 25 Sep, 2006 3 commits
  5. 24 Sep, 2006 1 commit
  6. 23 Sep, 2006 2 commits
  7. 21 Sep, 2006 2 commits
  8. 20 Sep, 2006 3 commits
  9. 19 Sep, 2006 2 commits
  10. 18 Sep, 2006 2 commits
  11. 16 Sep, 2006 1 commit
    • igor@rurik.mysql.com's avatar
      Fixed bug #22085: Crash on the execution of a prepared · dd3b8e4f
      igor@rurik.mysql.com authored
      statement that uses an aggregating IN subquery with 
      HAVING clause.
      A wrong order of the call of split_sum_func2 for the HAVING
      clause of the subquery and the transformation for the 
      subquery resulted in the creation of a andor structure
      that could not be restored at an execution of the prepared
      statement.
      dd3b8e4f
  12. 15 Sep, 2006 3 commits
  13. 14 Sep, 2006 4 commits
  14. 12 Sep, 2006 2 commits
  15. 11 Sep, 2006 1 commit
  16. 08 Sep, 2006 1 commit
  17. 07 Sep, 2006 3 commits
  18. 06 Sep, 2006 1 commit
  19. 05 Sep, 2006 3 commits
  20. 04 Sep, 2006 2 commits
    • gkodinov/kgeorge@macbook.gmz's avatar
      Bug #21392: multi-table delete with alias table name fails with · 3758b975
      gkodinov/kgeorge@macbook.gmz authored
                  1003: Incorrect table name
      in multi-table DELETE the set of tables to delete from actually 
      references then tables in the other list, e.g:
      DELETE alias_of_t1 FROM t1 alias_of_t1 WHERE ....
      is a valid statement.
      So we must turn off table name syntactical validity check for alias_of_t1 
      because it's not a table name (even if it looks like one).
      In order to do that we add a special flag (TL_OPTION_ALIAS) to 
      disable the name checking for the aliases in multi-table DELETE.
      3758b975
    • holyfoot/hf@mysql.com/deer.(none)'s avatar
      bug #12620 (UTF-8 indexing causes ER_NO_KEYFILE error) · c32f62be
      holyfoot/hf@mysql.com/deer.(none) authored
      The problem is that on some Mac OS X-es the file writing/reading
      call with zero bytes to read/write returns error.
      So here i try to eliminate that kinds of calls.
      c32f62be