1. 13 Oct, 2015 2 commits
  2. 09 Oct, 2015 1 commit
    • Sergei Golubchik's avatar
      fixes for buildbot: · 16c4b3c6
      Sergei Golubchik authored
      * OSX (mysqlimport freeing unallocated memory)
      * Windows (didn't compile MSI)
      * fulltest2 (innodb crashes in --embedded --big)
      16c4b3c6
  3. 08 Oct, 2015 4 commits
  4. 06 Oct, 2015 5 commits
  5. 30 Sep, 2015 1 commit
  6. 29 Sep, 2015 1 commit
  7. 28 Sep, 2015 2 commits
  8. 27 Sep, 2015 2 commits
  9. 25 Sep, 2015 3 commits
  10. 24 Sep, 2015 2 commits
  11. 22 Sep, 2015 2 commits
  12. 18 Sep, 2015 2 commits
  13. 17 Sep, 2015 1 commit
    • Nirbhay Choubey's avatar
      MDEV-8208: Sporadic SEGFAULT on startup · db2e21bf
      Nirbhay Choubey authored
      Problem:
      When mysqld starts as a galera node, it creates 2 system threads
      (applier & rollbacker) using start_wsrep_THD(). These threads are
      created before plugin initialization (plugin_init()) for SST methods
      like rsync and xtrabackup.
      
      The threads' initialization itself can proceed in parallel to mysqld's
      main thread of execution. As a result, the thread initialization code
      (start_wsrep_THD()) can end up accessing some un/partially initialized
      structures (like maria_hton, in this particular case) resulting in
      segfault.
      
      Solution:
      Fixed by calling THD::init_for_queries() (which accesses maria_hton)
      only after the plugins have been initialized.
      db2e21bf
  14. 15 Sep, 2015 2 commits
  15. 09 Sep, 2015 10 commits