1. 05 May, 2016 7 commits
  2. 04 May, 2016 13 commits
  3. 03 May, 2016 4 commits
  4. 02 May, 2016 1 commit
    • Alexey Botchkov's avatar
      MDEV-9898 SET ROLE NONE can crash mysqld. · 94cd0f6c
      Alexey Botchkov authored
              The check_user_can_set_role() used find_user_exact() to get the
              permissions for the SET ROLE NONE command. Which returned NULL too often,
              for instance when user authenticated as 'user'@'%'.
              Now we use find_user_wild() instead.
      94cd0f6c
  5. 01 May, 2016 1 commit
    • Monty's avatar
      Fixed assert if user table was mailformed. · ad4239cc
      Monty authored
      Added mysql_to_mariadb.sql script, to change mysql.user tables from
      MySQL 5.7 to MariaDB.
      After this script is run, one can get the other tables fixed by running
      mysql_upgrade
      ad4239cc
  6. 30 Apr, 2016 1 commit
  7. 29 Apr, 2016 3 commits
  8. 28 Apr, 2016 9 commits
  9. 27 Apr, 2016 1 commit
    • Nirbhay Choubey's avatar
      MDEV-9884: Existing /var/lib/mysql/.sst directory (with contents) causes SST... · 51a32ebe
      Nirbhay Choubey authored
      MDEV-9884: Existing /var/lib/mysql/.sst directory (with contents) causes SST to fail with xtrabackup-v2
      
      [Fix taken from https://github.com/percona/percona-xtradb-
      cluster/commit/b3ee75949ed82b88f355ca2e26431350cc1c89ac]
      
      During SST, the receiver node creates .sst directory under
      datadir to process/prepare the received data and removes it
      at the end of the process. In case of error, this directory,
      however, was not removed, which later caused subsequent SSTs
      to fail. Fixed by removing this directory at the beginning
      of SST if it existed.
      51a32ebe