1. 09 Oct, 2014 1 commit
  2. 08 Oct, 2014 4 commits
  3. 07 Oct, 2014 11 commits
  4. 06 Oct, 2014 3 commits
  5. 05 Oct, 2014 2 commits
    • Sergei Golubchik's avatar
      fix failing rpl.rpl_user_variables · 689ffe35
      Sergei Golubchik authored
      typo fixed. use correct constant.
      689ffe35
    • Sergei Golubchik's avatar
      fix main.mysqldump test failing after Mroonga merge. · 3050b290
      Sergei Golubchik authored
      mysqlimport had code for multi-threaded import. By mistake it was disabled for
      many years, at least since 5.5 (more likely even in 5.1), but mysqlimport happily
      accepted (and ignored) --use-threads option ever since.
      
      After Mroonga merge HAVE_LIBPTHREAD became defined and multi-threaded import
      suddenly came to life. As it exit() the program brutally on any error (never mind
      that some import threads may be running) mysys rightfully complains. Safemalloc
      complains too in debug builds.
      
      Fix: don't try a clean exit on an error, don't shutdown mysys and tell safemalloc
      to shut up. Yes, and remove #ifdef HAVE_LIBPTHREAD, since 5.5 the client library
      is always multi-threaded.
      3050b290
  6. 04 Oct, 2014 3 commits
  7. 03 Oct, 2014 1 commit
  8. 02 Oct, 2014 7 commits
  9. 30 Sep, 2014 3 commits
    • Sergei Golubchik's avatar
      4a784356
    • Sergei Golubchik's avatar
      fix more sql_command_flags: · 9fe7feb8
      Sergei Golubchik authored
        SQLCOM_ASSIGN_TO_KEYCACHE should not be CF_AUTO_COMMIT_TRANS
        SQLCOM_PRELOAD_KEYS should not be CF_AUTO_COMMIT_TRANS
        SQLCOM_INSTALL_PLUGIN should need CF_AUTO_COMMIT_TRANS
        SQLCOM_UNINSTALL_PLUGIN should need CF_AUTO_COMMIT_TRANS
      9fe7feb8
    • Sergei Golubchik's avatar
      BUG#13627921 - MISSING FLAGS IN SQL_COMMAND_FLAGS MAY LEAD TO REPLICATION PROBLEMS · 75908fc4
      Sergei Golubchik authored
      merge from MySQL-5.6, revision:
      
      revno: 3677.2.1
      committer: Alfranio Correia <alfranio.correia@oracle.com>
      timestamp: Tue 2012-02-28 16:26:37 +0000
      message:
        BUG#13627921 - MISSING FLAGS IN SQL_COMMAND_FLAGS MAY LEAD TO REPLICATION PROBLEMS
      
        Flags in sql_command_flags[command] are not correctly set for the following
        commands:
      
          . SQLCOM_SET_OPTION is missing CF_CAN_GENERATE_ROW_EVENTS;
          . SQLCOM_BINLOG_BASE64_EVENT is missing CF_CAN_GENERATE_ROW_EVENTS;
          . SQLCOM_REVOKE_ALL is missing CF_CHANGES_DATA;
          . SQLCOM_CREATE_FUNCTION is missing CF_AUTO_COMMIT_TRANS;
      
        This may lead to a wrong sequence of events in the binary log. To fix
        the problem, we correctly set the flags in sql_command_flags[command].
      75908fc4
  10. 03 Oct, 2014 1 commit
  11. 02 Oct, 2014 2 commits
  12. 01 Oct, 2014 2 commits