1. 03 Oct, 2006 2 commits
  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 1 commit
    • 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