1. 08 May, 2016 2 commits
  2. 07 May, 2016 1 commit
  3. 06 May, 2016 1 commit
  4. 05 May, 2016 11 commits
  5. 04 May, 2016 13 commits
  6. 03 May, 2016 4 commits
  7. 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
  8. 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
  9. 30 Apr, 2016 1 commit
  10. 29 Apr, 2016 3 commits
  11. 28 Apr, 2016 2 commits
    • Vladislav Vaintroub's avatar
      9eba34f0
    • Sergey Vojtovich's avatar
      MDEV-9988 - Insert cast to suppress -Wdynamic-class-memaccess · 94bad73d
      Sergey Vojtovich authored
      Clang warns on this code because it is memsetting over a vtable contained in a
      struct in the best_positions array. The diagnostic text is:
      
      mariadb/sql/sql_select.cc:24462:10: error: destination for this 'memset' call is
      a pointer to class containing a dynamic class 'Duplicate_weedout_picker'; vtable
      pointer will be overwritten [-Werror,-Wdynamic-class-memaccess]
        memset(best_positions, 0, sizeof(POSITION) * (table_count + 1));
        ~~~~~~ ^
      
      Patch contributed by David Gow.
      94bad73d