1. 13 Mar, 2015 6 commits
  2. 12 Mar, 2015 7 commits
  3. 11 Mar, 2015 6 commits
  4. 10 Mar, 2015 3 commits
  5. 08 Mar, 2015 2 commits
  6. 07 Mar, 2015 7 commits
  7. 06 Mar, 2015 7 commits
  8. 05 Mar, 2015 2 commits
    • Sergey Vojtovich's avatar
      MDEV-7148 - Recurring: InnoDB: Failing assertion: !lock->recursive · e13459a1
      Sergey Vojtovich authored
      Re-applied lost in the merge revision:
      commit ed313e8a
      Author: Sergey Vojtovich <svoj@mariadb.org>
      Date:   Mon Dec 1 14:58:29 2014 +0400
      
          MDEV-7148 - Recurring: InnoDB: Failing assertion: !lock->recursive
      
          On PPC64 high-loaded server may crash due to assertion failure in InnoDB
          rwlocks code.
      
          This happened because load order between "recursive" and "writer_thread"
          wasn't properly enforced.
      e13459a1
    • Jan Lindström's avatar
      MDEV-7578 :Slave is ~10x slower to execute set of statements compared to master when using RBR · f66fbe8c
      Jan Lindström authored
      Analysis: On master when executing (single/multi) row INSERTs/REPLACEs
      InnoDB fallback to old style autoinc locks (table locks)
      only if another transaction has already acquired the AUTOINC lock.
      Instead on slave as we are executing log_events and sql_command
      is not correctly set, InnoDB does not use new style autoinc
      locks when it could.
      
      Fix: Use new style autoinc locks also when
      thd_sql_command(user_thd) == SQLCOM_END i.e. this is RBR event.
      f66fbe8c