1. 28 Feb, 2007 1 commit
  2. 23 Dec, 2006 1 commit
  3. 14 Dec, 2006 1 commit
    • monty@mysql.com/narttu.mysql.fi's avatar
      Fixed compiler warnings detected by option -Wshadow and -Wunused: · 88dd873d
      monty@mysql.com/narttu.mysql.fi authored
      - Removed not used variables and functions
      - Added #ifdef around code that is not used
      - Renamed variables and functions to avoid conflicts
      - Removed some not used arguments
      
      Fixed some class/struct warnings in ndb
      Added define IS_LONGDATA() to simplify code in libmysql.c
      
      I did run gcov on the changes and added 'purecov' comments on almost all lines that was not just variable name changes
      88dd873d
  4. 05 Dec, 2006 1 commit
  5. 30 Nov, 2006 1 commit
  6. 17 Oct, 2006 1 commit
  7. 03 Oct, 2006 1 commit
    • kroki/tomash@moonlight.intranet's avatar
      Fix for the patch for bug#21726: Incorrect result with multiple · 8798b462
      kroki/tomash@moonlight.intranet authored
      invocations of LAST_INSERT_ID.
      
      Reding of LAST_INSERT_ID inside stored function wasn't noted by caller,
      and no LAST_INSERT_ID_EVENT was issued for binary log.
      
      The solution is to add THD::last_insert_id_used_bin_log, which is much
      like THD::last_insert_id_used, but is reset only for upper-level
      statements.  This new variable is used to issue LAST_INSERT_ID_EVENT.
      8798b462
  8. 29 Sep, 2006 1 commit
  9. 04 Sep, 2006 1 commit
  10. 01 Aug, 2006 1 commit
  11. 28 Jun, 2006 1 commit
    • aivanov@mysql.com's avatar
      Fixing BUG#17719 "Delete of binlog files fails on Windows" · 7dc30c68
      aivanov@mysql.com authored
       and BUG#19208 "Test 'rpl000017' hangs on Windows".
       Both bugs are caused by attempting to delete an opened
       file and to create immediatedly a new one with the same
       name. On Windows it can be supported only on NT-platforms
       (by using FILE_SHARE_DELETE mode and with renaming the
       file before deletion). Because deleting not-closed files
       is not supported on all platforms (e.g. Win 98|ME) this
       is to be considered harmful and should be eliminated by
       a "code redesign".
      7dc30c68
  12. 12 Jun, 2006 1 commit
  13. 31 Mar, 2006 1 commit
  14. 18 Feb, 2006 1 commit
    • guilhem@mysql.com's avatar
      Fix for BUG#16559 "Replication Problems with Non transactional tables inside... · 4c5d18b1
      guilhem@mysql.com authored
      Fix for BUG#16559 "Replication Problems with Non transactional tables inside an interrupted trans.":
      problem was: when a connection disconnects having an open transaction affecting MyISAM and InnoDB, the ROLLBACK event stored in the binary log
      contained a non-zero error code (1053 because of the disconnection), so when slave applied the transaction, slave complained that its ROLLBACK succeeded
      (error_code=0) while master's had 1053, so slave stopped. But internally generated binlog events such as this ROLLBACK
      should always have 0 as error code, as is true in 4.1 and was accidentally broken in 5.0,
      so that there is no false alarm.
      4c5d18b1
  15. 20 Nov, 2005 1 commit
    • bell@sanja.is.com.ua's avatar
      Inefficient usage of String::append() fixed. · 806f9e24
      bell@sanja.is.com.ua authored
      Bad examples of usage of a string with its length fixed.
      The incorrect length in the trigger file configuration descriptor
        fixed (BUG#14090).
      A hook for unknown keys added to the parser to support old .TRG files.
      806f9e24
  16. 14 Nov, 2005 2 commits
  17. 10 Nov, 2005 1 commit
  18. 04 Nov, 2005 1 commit
  19. 02 Nov, 2005 1 commit
  20. 27 Oct, 2005 1 commit
  21. 17 Oct, 2005 2 commits
  22. 12 Oct, 2005 1 commit
    • guilhem@mysql.com's avatar
      Fix for BUG#13023: "SQL Thread is up but doesn't move forward". Details in slave.cc; · 4c1c9db8
      guilhem@mysql.com authored
      in short we now record whenever the slave I/O thread ignores a master's event because of its server id,
      and use this info in the slave SQL thread to advance Exec_master_log_pos. Because if we
      do not, this variable stays at the position of the last executed event, i.e. the last *non-ignored*
      executed one, which may not be the last of the master's binlog (and so the slave *looks* behind
      the master though it's data-wise it's not).
      4c1c9db8
  23. 06 Oct, 2005 1 commit
  24. 04 Oct, 2005 1 commit
  25. 03 Oct, 2005 2 commits
  26. 20 Sep, 2005 1 commit
  27. 16 Sep, 2005 1 commit
    • kent@mysql.com's avatar
      log.cc: · 19bae53d
      kent@mysql.com authored
        Cast my_munmap() argument to be able to compile on Solaris
      19bae53d
  28. 15 Sep, 2005 1 commit
  29. 07 Sep, 2005 1 commit
  30. 26 Aug, 2005 1 commit
  31. 25 Aug, 2005 1 commit
  32. 31 Jul, 2005 1 commit
    • monty@mishka.local's avatar
      Fixes during review of new pushed code · 8437e9c1
      monty@mishka.local authored
      Change bool in C code to my_bool
      Added to mysqltest --enable_parsning and --disable_parsing to avoid to have to comment parts of tests
      Added comparison of LEX_STRING's and use this to compare file types for view and trigger files.
      8437e9c1
  33. 28 Jul, 2005 1 commit
  34. 18 Jul, 2005 1 commit
    • monty@mishka.local's avatar
      Cleanups during review · 78c65b5a
      monty@mishka.local authored
      Changed defaults option --instance to --defaults-group-suffix
      Changed option handling to allow --defaults-file, --defaults-extra-file and --defaults-group-suffix to be given in any order
      Changed MYSQL_INSTANCE to MYSQL_GROUP_SUFFIX
      mysql_print_defaults now understands --defaults-group-suffix
      Remove usage of my_tempnam() (not safe function)
      if( -> if ( and while( to while (
      78c65b5a
  35. 12 Jul, 2005 1 commit
  36. 07 Jun, 2005 1 commit
  37. 26 May, 2005 1 commit