1. 23 Oct, 2008 1 commit
  2. 22 Oct, 2008 2 commits
  3. 21 Oct, 2008 5 commits
  4. 10 Oct, 2008 1 commit
  5. 09 Oct, 2008 4 commits
  6. 08 Oct, 2008 10 commits
  7. 07 Oct, 2008 12 commits
  8. 06 Oct, 2008 5 commits
    • Guilhem Bichot's avatar
      merge · ded93b21
      Guilhem Bichot authored
      ded93b21
    • Chad MILLER's avatar
    • Chad MILLER's avatar
      Fix autoconf substitution and evaluation of a string inside single quotes · 5cee4d7c
      Chad MILLER authored
      so that if the substitution contains single-quotes, the program will fail.
      5cee4d7c
    • Tatiana A. Nurnberg's avatar
      WL#4403 deprecate @log and @slow_log_queries variables · 1ad9d235
      Tatiana A. Nurnberg authored
      Adds --general-log-file, --slow-query-log-file command-
      line options to match system variables of the same names.
      
      Deprecates --log, --log-slow-queries command-line option
      and log, log_slow_queries system-variables for v7.0; they
      are superseded by general_log/general_log_file and
      slow_query_log/slow_query_log_file, respectively.
      1ad9d235
    • Guilhem Bichot's avatar
      Fix for BUG#31612 · f8670e2c
      Guilhem Bichot authored
      "Trigger fired multiple times leads to gaps in auto_increment sequence".
      The bug was that if a trigger fired multiple times inside a top
      statement (for example top-statement is a multi-row INSERT,
      and trigger is ON INSERT), and that trigger inserted into an auto_increment
      column, then gaps could be observed in the auto_increment sequence,
      even if there were no other users of the database (no concurrency).
      It was wrong usage of THD::auto_inc_intervals_in_cur_stmt_for_binlog.
      Note that the fix changes "class handler", I'll tell the Storage Engine API team.
      f8670e2c