1. 02 Oct, 2014 1 commit
    • Sergei Golubchik's avatar
      MDEV-5120 Test suite test maria-no-logging fails · aa36d9e7
      Sergei Golubchik authored
      stat structure (from <sys/stat.h>) is conditionally defined
      to have different layout and size depending on the defined macros.
      The correct macro is defined in my_config.h, which means it MUST be
      included first (or, at least before <features.h> - so, practically,
      before including any system headers).
      aa36d9e7
  2. 25 Sep, 2014 1 commit
  3. 03 Oct, 2014 1 commit
  4. 25 Sep, 2014 1 commit
    • Sergey Vojtovich's avatar
      MDEV-6774 - Deadlock between SELECT, DROP TABLE, SHOW STATUS and · b737d902
      Sergey Vojtovich authored
                  SET @@global.log_output
      
      Deadlock chain:
      rdlock(LOCK_logger) -> lock(LOCK_open)     SELECT 1
      lock(LOCK_open)     -> lock(LOCK_status)   DROP TABLE t1
      lock(LOCK_status)   -> lock(LOCK_g_s_v)    SHOW STATUS
      lock(LOCK_g_s_)     -> wrlock(LOCK_logger) SET @@global.log_output=DEFAULT
      
      Fixed by removing relationship between LOCK_status and
      LOCK_global_system_variables during SHOW STATUS: we don't really need
      LOCK_global_system_variables when accessing status vars.
      b737d902
  5. 18 Sep, 2014 1 commit
    • Sergey Vojtovich's avatar
      MDEV-6749 - Deadlock between GRANT/REVOKE, SELECT FROM I_S.COLUMNS, · d1e46a50
      Sergey Vojtovich authored
                  SET slow_query_log and failed connection attempt
      
      A very subtle though valid deadlock. Deadlock chain:
      wrlock(LOCK_grant)    -> lock(acl_cache->lock) GRANT/REVOKE CREATE/DROP USER
      lock(LOCK_open)       -> rdlock(LOCK_grant)    SELECT * FROM I_S.COLUMNS
      wrlock(LOCK_logger)   -> lock(LOCK_open)       SET @@global.slow_query_log='ON'
      lock(acl_cache->lock) -> rdlock(LOCK_logger)   Failed connection
      
      Fixed by removing relationship between acl_cache->lock and LOCK_logger
      during failed connection attempt.
      d1e46a50
  6. 23 Sep, 2014 4 commits
  7. 19 Sep, 2014 1 commit
  8. 18 Sep, 2014 1 commit
  9. 16 Sep, 2014 1 commit
  10. 15 Sep, 2014 4 commits
  11. 13 Sep, 2014 4 commits
  12. 12 Sep, 2014 6 commits
  13. 10 Sep, 2014 3 commits
  14. 09 Sep, 2014 3 commits
  15. 08 Sep, 2014 2 commits
  16. 06 Sep, 2014 2 commits
  17. 05 Sep, 2014 2 commits
  18. 03 Sep, 2014 2 commits