An error occurred fetching the project authors.
  1. 11 Sep, 2003 1 commit
  2. 25 Aug, 2003 1 commit
  3. 07 Aug, 2003 1 commit
  4. 04 Aug, 2003 1 commit
    • guilhem@mysql.com's avatar
      2 bugfixes: · bb12d905
      guilhem@mysql.com authored
      - Bug #985: "Between RESET SLAVE and START SLAVE, SHOW SLAVE STATUS is wrong."
      Now RESET SLAVE puts correct info in mi->host etc. A new test rpl_reset_slave
      for that.
      - Bug #986: "CHANGE MASTER & START SLAVE do not reset error columns in SHOW
      SLAVE STATUS". Now these reset the errors.
      bb12d905
  5. 24 Jul, 2003 1 commit
    • guilhem@mysql.com's avatar
      WL#1036 (print the db in slave error messages). · df3b31f3
      guilhem@mysql.com authored
      I extended the task to cleaning error messages, making them look nicer,
      and making the output of SHOW SLAVE STATUS (column Last_error) be as complete
      as what's printed on the .err file;
      previously we would have, for a failure of a replicated LOAD DATA INFILE:
      - in the .err, 2 lines:
      "duplicate entry 2708 for key 1"
      "failed loading SQL_LOAD-5-2-2.info"
      - and in SHOW SLAVE STATUS, only:
      "failed loading SQL_LOAD-5-2-2.info".
      Now SHOW SLAVE STATUS will contain the concatenation of the 2 messages.
      df3b31f3
  6. 06 Jul, 2003 1 commit
  7. 04 Jul, 2003 1 commit
  8. 02 Jul, 2003 1 commit
  9. 06 Jun, 2003 1 commit
    • guilhem@mysql.com's avatar
      Fix for bug 254 : · 60fb005e
      guilhem@mysql.com authored
      we now make a distinction between if the master is < 3.23.57, 3.23 && >=57, and 4.x
      (before the 2 3.23 were one). This is because in 3.23.57 we have a way to distinguish between
      a Start_log_event written at server startup and one written at FLUSH LOGS, so we
      have a way to know if the slave must drop old temp tables or not.
      Change: mi->old_format was bool, now it's enum (to handle 3 cases). However, functions
      which had 'bool old_format' as an argument have their prototypes unchanged, because
      the old old_format == 0 now corresponds to the enum value BINLOG_FORMAT_CURRENT which
      is equal to 0, so boolean tests are left untouched. The only case were we use mi->old_format
      as an enum instead of casting it implicitly to a bool, is in Start_log_event::exec_event,
      where we want to distinguish between the 3 possible enum values.
      60fb005e
  10. 17 Mar, 2003 1 commit
  11. 01 Mar, 2003 1 commit
  12. 28 Jan, 2003 1 commit
    • monty@mashka.mysql.fi's avatar
      Fixes for Netware · 689578a0
      monty@mashka.mysql.fi authored
      Call pthread_mutex_destroy() on not used mutex.
      Changed comments in .h and .c files from // -> /* */
      Added detection of mutex on which one didn't call pthread_mutex_destroy()
      Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression"
      Added optimisation for ORDER BY NULL
      689578a0
  13. 25 Jan, 2003 1 commit
  14. 11 Dec, 2002 1 commit
  15. 07 Nov, 2002 1 commit
  16. 11 Sep, 2002 1 commit
    • monty@mashka.mysql.fi's avatar
      Portability fixes. · f3a186c9
      monty@mashka.mysql.fi authored
      Improve mysql-test to be more robust.
      Fix that GRANT doesn't delete SSL options
      Change innobase_flush_log_at_trx_commit to uint.
      Don't rotate logs if we read a rotate log entry from the master.
      f3a186c9
  17. 24 Aug, 2002 1 commit
  18. 23 Aug, 2002 1 commit
  19. 22 Aug, 2002 1 commit
  20. 21 Aug, 2002 1 commit
    • monty@hundin.mysql.fi's avatar
      Use our version of RWLOCKS on UNIXWARE 7 · 03b0179a
      monty@hundin.mysql.fi authored
      More DBUG info for replication
      Better error messages from replication
      Fixed bug in replication code when connecting to 'localhost' (time was not released properly)
      Block ALARM signal on Linux for signal handler thread (Fixes problem with running mysqld with --debug)
      Removed warning when setting an AUTO_INCREMENT field to NULL
      03b0179a
  21. 08 Aug, 2002 1 commit
    • monty@mashka.mysql.fi's avatar
      Lots of code fixes to the replication code (especially the binary logging and... · 2c4fa340
      monty@mashka.mysql.fi authored
      Lots of code fixes to the replication code (especially the binary logging and index log file handling)
      Fixed bugs in my last changeset that made MySQL hard to compile.
      Added mutex around some data that could cause table cache corruptions when using OPTIMIZE TABLE / REPAIR TABLE or automatic repair of MyISAM tables.
      Added mutex around some data in the slave start/stop code that could cause THD linked list corruptions
      Extended my_chsize() to allow one to specify a filler character.
      Extend vio_blocking to return the old state (This made some usage of this function much simpler)
      Added testing for some functions that they caller have got the required mutexes before calling the function.
      Use setrlimit() to ensure that we can write core file if one specifies --core-file.
      Added --slave-compressed-protocol
      Made 2 the minimum length for ft_min_word_len
      Added variables foreign_key_checks & unique_checks.
      Less logging from replication code (if not started with --log-warnings)
      Changed that SHOW INNODB STATUS requre the SUPER privilege
      More DBUG statements and a lot of new code comments
      2c4fa340
  22. 17 Jul, 2002 1 commit
  23. 22 Jun, 2002 1 commit
  24. 11 Jun, 2002 1 commit
  25. 05 Jun, 2002 1 commit
  26. 29 May, 2002 1 commit
  27. 30 Apr, 2002 1 commit
  28. 25 Apr, 2002 1 commit
  29. 15 Apr, 2002 1 commit
  30. 02 Apr, 2002 1 commit
    • sasha@mysql.sashanet.com's avatar
      relay_log_space_limit · 14603a36
      sasha@mysql.sashanet.com authored
      DBUG_ macro cleanup
      buffer boundary cleanup
      This changeset, although not fully tested, works for me better than 
      anything I've had so far, including what is in the repository. I will 
      push it unless something crashes while I am writing this :-)
      14603a36
  31. 30 Mar, 2002 1 commit
  32. 03 Mar, 2002 1 commit
  33. 07 Feb, 2002 1 commit
    • sasha@mysql.sashanet.com's avatar
      fixes for slave backward compat · 6980a24e
      sasha@mysql.sashanet.com authored
      fixed bug in LOAD DATA FROM MASTER
      fixed rpl000001.result
      Slave now replicates 3.23 master, with the exception of LOAD DATA INFILE, 
      which is still buggy. Will push this one after the pull/merge
      6980a24e
  34. 30 Jan, 2002 1 commit
  35. 29 Jan, 2002 1 commit
    • monty@hundin.mysql.fi's avatar
      New error messages · be462898
      monty@hundin.mysql.fi authored
      Test of unsigned BIGINT values
      Fixes for queries-per-hour
      Cleanup of replication code (comments and portability fixes)
      Make most of the binary log code 4G clean
      Changed syntax for GRANT ... QUERIES PER HOUR
      be462898
  36. 27 Jan, 2002 1 commit
  37. 22 Jan, 2002 1 commit
    • sasha@mysql.sashanet.com's avatar
      post-merge fixes, including slave-skip-errors backport · 8e43ad12
      sasha@mysql.sashanet.com authored
      fixed too quick timeout in mysql-test-run which caused a race with the
       new server getting started before the old one completely finished 
       shutdown. This should fix the pid warning we've been getting as well as
       inconsistent results when running tests with the manager
      8e43ad12
  38. 20 Jan, 2002 1 commit
  39. 13 Dec, 2001 1 commit
    • sasha@mysql.sashanet.com's avatar
      slave-skip-errors · f7acf09d
      sasha@mysql.sashanet.com authored
      added extra/mysql_install.c - will work on it in 4.0, but it does not hurt
      to have it sit in 3.23 tree for now since it will eventually be backported 
      to 3.23 anyway 
      f7acf09d
  40. 06 Dec, 2001 1 commit