An error occurred fetching the project authors.
  1. 25 Aug, 2004 1 commit
  2. 20 Aug, 2004 1 commit
  3. 18 Aug, 2004 1 commit
  4. 06 Aug, 2004 1 commit
  5. 24 Jun, 2004 1 commit
  6. 17 Jun, 2004 2 commits
  7. 10 Jun, 2004 1 commit
  8. 09 Jun, 2004 2 commits
  9. 08 Jun, 2004 1 commit
  10. 01 Jun, 2004 1 commit
  11. 29 May, 2004 1 commit
  12. 15 May, 2004 1 commit
  13. 14 May, 2004 1 commit
    • heikki@hundin.mysql.fi's avatar
      Many files: · 02f51ccf
      heikki@hundin.mysql.fi authored
        Fix remaining cases of Bug #3596: fix possible races caused by an obsolete value of thd->query_length in SHOW PROCESSLIST and SHOW INNODB STATUS; this fix depends on the fact that thd->query is always set to NULL before setting it to point to a new query
      02f51ccf
  14. 23 Mar, 2004 1 commit
  15. 12 Mar, 2004 1 commit
  16. 11 Mar, 2004 2 commits
    • guilhem@mysql.com's avatar
      Fix for BUG#2983 "If statement was killed on master, slave errors despite replicate-wild-ignore-t" · 69517b22
      guilhem@mysql.com authored
      We introduce a new function mysql_test_parse_for_slave().
      If the slave sees that the query got a really bad error on master
      (killed e.g.), then it calls this function to know if this query
      can be ignored because of replicate-*-table rules (do not worry
      about replicate-*-db rules: they are checked so early that they have
      no bug). If the answer is yes, it skips the query and continues. If
      it's no, then it stops and say "fix your slave data manually" (like it
      did before this change).
      69517b22
    • guilhem@mysql.com's avatar
      Fix for BUG#2921 "Replication problem on mutex lock in mySQL-4.0.18": · cf287341
      guilhem@mysql.com authored
      re-using unused LOCK_active_mi to serialize all administrative
      commands related to replication:
      START SLAVE, STOP SLAVE, RESET SLAVE, CHANGE MASTER, init_slave()
      (replication autostart at server startup), end_slave() (replication
      autostop at server shutdown), LOAD DATA FROM MASTER.
      This protects us against a handful of deadlocks (like BUG#2921
      when two START SLAVE, but when two STOP SLAVE too).
      Removing unused variables.
      cf287341
  17. 05 Mar, 2004 1 commit
    • vva@eagle.mysql.r18.ru's avatar
      fixed Bug #2985 · 29bc7b03
      vva@eagle.mysql.r18.ru authored
       "Table truncated when creating another table name with Spaces"
      added to check_db_name, check_table_name and check_column_name
      test for end space
      29bc7b03
  18. 04 Mar, 2004 1 commit
  19. 03 Feb, 2004 1 commit
  20. 30 Jan, 2004 1 commit
    • dlenev@mysql.com's avatar
      Fix for bugs #1885, #2464, #2539. Proper handling of default · e3816cb4
      dlenev@mysql.com authored
      values for TIMESTAMP columns. The solution is not perfect since
      we just silently ignoring default value for first TIMESTAMP 
      column and properly reflecting this fact in SHOW CREATE TABLE.
      We can't give a warning or simply support standard syntax 
      (niladic functions as legal value for default) for first field 
      since it is 4.0 tree.
      e3816cb4
  21. 29 Jan, 2004 1 commit
  22. 30 Dec, 2003 1 commit
    • monty@mysql.com's avatar
      Some small portability fixes. · c1dd070b
      monty@mysql.com authored
      Added support for lower_case_table_names=2, which is to be used on case insensitive file systems.
      This tells MySQL to preserve the used case of filenames and database names to make it esier to move files between cases sensitive can case insensitive file systems (like Windows and Linux)
      c1dd070b
  23. 17 Dec, 2003 1 commit
  24. 16 Dec, 2003 1 commit
    • guilhem@mysql.com's avatar
      Fix for BUG#2083 · db2d812d
      guilhem@mysql.com authored
      "EE_ error codes (EE_DELETE, EE_WRITE) end up in the binlog, making slave stop".
      The problem was that during execution of the command on the master, an error
      can occur (for example, not space left on device, then mysqld waits and when
      there is space it completes successfully: so finally it worked but the error
      EE_WRITE remains in thd->net.last_errno and thd->net.last_error).
      To know if finally the command succeeded, we test the 'error' variable in
      every place, and if it shows no failure we reset thd->net.last_err* using
      the function THD::clear_error() which is backported from 4.1.
      A new test to see if now only real errors get to the binlog (note: the test
      uses "rm").
      
      Also a bit of memory free/alloc saving in log_event.cc (do not free the whole
      mem_root after every query in the slave SQL thread: we can keep the initial
      block of it; which will be freed when the thread terminates).
      db2d812d
  25. 14 Dec, 2003 1 commit
    • monty@mysql.com's avatar
      Extend max_allowed_packet to 2G in mysql and mysqldump (Bug #2105) · d47deebb
      monty@mysql.com authored
      Don't dump data for MRG_ISAM or MRG_MYISAM tables. (Bug #1846)
      Ensure that 'lower_case_table_names' is always set on case insensitive file systems. (Bug #1812)
      One can now configure MySQL as windows service as a normal user. (Bug #1802)
      Database names is now compared with lower case in ON clause when lower_case_table_names is set. (Bug #1736)
      IGNORE ... LINES option didn't work when used with fixed length rows. (Bug #1704)
      Change INSERT DELAYED ... SELECT... to INSERT .... SELECT (Bug #1983)
      Safety fix for service 'mysql start' (Bug #1815)
      d47deebb
  26. 12 Dec, 2003 1 commit
    • monty@mysql.com's avatar
      Fix autoincrement for signed columns (Bug #1366) · f995a5f4
      monty@mysql.com authored
      Fixed problem with char > 128 in QUOTE() function. (Bug #1868)
      Disable creation of symlinks if my_disable_symlink is set
      Fixed searching of TEXT with end space. (Bug #1651)
      Fixed caching bug in multi-table-update where same table was used twice. (Bug #1711)
      Fixed problem with UNIX_TIMESTAMP() for timestamps close to 0. (Bug #1998)
      Fixed timestamp.test
      f995a5f4
  27. 10 Dec, 2003 1 commit
  28. 09 Dec, 2003 1 commit
  29. 04 Dec, 2003 1 commit
  30. 17 Nov, 2003 1 commit
  31. 11 Nov, 2003 1 commit
  32. 29 Oct, 2003 2 commits
  33. 27 Oct, 2003 1 commit
  34. 14 Oct, 2003 1 commit
  35. 11 Oct, 2003 1 commit
  36. 29 Sep, 2003 1 commit