1. 12 Sep, 2017 11 commits
  2. 11 Sep, 2017 1 commit
  3. 08 Sep, 2017 5 commits
  4. 07 Sep, 2017 6 commits
  5. 06 Sep, 2017 9 commits
  6. 05 Sep, 2017 2 commits
  7. 04 Sep, 2017 4 commits
    • andrelkin's avatar
      MDEV-12731 · 8592ff9e
      andrelkin authored
      Was reported as 'rpl.rpl_gtid_stop_start fails with Valgrind in buildbot and outside'.
      The 'Conditional jump or move depends on uninitialized value' valgrind complaint is valid
      and means THD::m_current_stage_key that is not initialized indeed by constructor.
      
      Fixed with its initialization added to the initializer list of
      THD::THD.  Double checked with mysql to have found a similar fixes for
      the very same issue which was discovered after P_S merge to Maria
      (60589aee where the member is introduced) had been done.
      8592ff9e
    • Andrei Elkin's avatar
      Post-push for MDEV-13437 · 641baa5d
      Andrei Elkin authored
      A new $MYSQLD_LAST_CMD evaluation was too late in case --manual-gdb.
      Now it is done before the server restart type branches which is safe
      and the args value has been fully computed by the new point of
      evaluation.
      641baa5d
    • Oleksandr Byelkin's avatar
      MDEV-10972: Insert from select / view / union -- repeatable crash in 10.1, 10.2 Linux/Mac/Windows · 17589989
      Oleksandr Byelkin authored
      save thd->select_number between parsing and executions (in case it was not complete executed due to errors (for example epsent table))
      17589989
    • Marko Mäkelä's avatar
      MDEV-13705 10.0.32 does not compile on architectures without 64-bit atomics · 05008999
      Marko Mäkelä authored
      This is a backport of the following:
      
      MDEV-13009 10.1.24 does not compile on architectures without 64-bit atomics
      
      Add a missing #include "sync0types.h" that was removed in MDEV-12674.
      05008999
  8. 03 Sep, 2017 1 commit
  9. 01 Sep, 2017 1 commit
    • Marko Mäkelä's avatar
      Follow-up to MDEV-13570 Assertion failure !srv_read_only_mode in... · 1136c8d3
      Marko Mäkelä authored
      Follow-up to MDEV-13570 Assertion failure !srv_read_only_mode in --innodb-read-only shutdown when buf_resize_thread is active
      
      logs_empty_and_mark_files_at_shutdown(): Actually skip the debug assertion
      when the buf_resize_thread is active. The previous fix skipped the
      debug assertion failure when buf_dump_thread is active. Both these
      threads are created also in innodb_read_only mode. Depending on how
      fast these threads react to the shutdown signal, the debug assertion
      could be triggered.
      
      There is no impact on non-debug servers, and very little impact on
      debug servers either, because in innodb_read_only shutdown, no InnoDB
      files will need to be written.
      1136c8d3