An error occurred fetching the project authors.
  1. 28 Mar, 2006 1 commit
  2. 23 Feb, 2006 1 commit
  3. 21 Feb, 2006 1 commit
  4. 16 Jan, 2006 1 commit
  5. 14 Jan, 2006 1 commit
  6. 25 Nov, 2005 1 commit
  7. 23 Nov, 2005 1 commit
  8. 08 Sep, 2005 1 commit
  9. 06 Sep, 2005 1 commit
  10. 28 Jul, 2005 1 commit
  11. 15 Jul, 2005 2 commits
  12. 14 Jul, 2005 3 commits
  13. 13 Jul, 2005 4 commits
  14. 20 Jun, 2005 2 commits
  15. 07 Jun, 2005 1 commit
  16. 16 May, 2005 1 commit
  17. 05 May, 2005 2 commits
  18. 03 May, 2005 1 commit
  19. 13 Apr, 2005 1 commit
  20. 05 Apr, 2005 1 commit
  21. 03 Mar, 2005 1 commit
    • konstantin@mysql.com's avatar
      Fixes for bug#8115 "Server Crash with prepared statement" · fe2d63a0
      konstantin@mysql.com authored
       and bug#8849 "problem with insert statement with table alias's": 
      make equality propagation work in stored procedures and prepared 
      statements.
      Equality propagation can change AND/OR structure of ON expressions,
      so the fix is to provide each execution of PS/SP with it's own
      copy of AND/OR tree. We have been doing that already for WHERE clauses,
      now ON clauses are also copied.
      fe2d63a0
  22. 02 Mar, 2005 1 commit
  23. 08 Dec, 2004 1 commit
  24. 02 Dec, 2004 1 commit
    • monty@mysql.com's avatar
      Cleanups during review stage · d1a666d5
      monty@mysql.com authored
      Added auto-correct of field length for enum/set tables for ALTER TABLE
      This is becasue of a bug in previous MySQL 4.1 versions where the length for enum/set was set incorrectly after ALTER TABLE
      d1a666d5
  25. 21 Nov, 2004 1 commit
  26. 05 Nov, 2004 2 commits
  27. 23 Oct, 2004 1 commit
  28. 22 Oct, 2004 3 commits
  29. 13 Oct, 2004 1 commit
    • konstantin@mysql.com's avatar
      A fix and test case for Bug#5985 ""prepare stmt from "select rand(?)" · 5abc3de2
      konstantin@mysql.com authored
      crashes server." The fix makes Item_func_rand prepared-statements
      aware plus it fixes the case when RAND is used in prepared
      statements and replication is on (as well as several similar issues).
      Until now we did not reset THD before every execution of a prepared
      statement, so if some execution had set thd->time_zone_used
      or thd->rand_used they would not be reset until next mysql_parse.
      Some of post-review fixes done.
      5abc3de2