1. 08 Nov, 2022 3 commits
    • Vladislav Vaintroub's avatar
      MDEV-26715 Windows/installer - gssapi support · d186cb18
      Vladislav Vaintroub authored
      update libmariadb
      d186cb18
    • Vladislav Vaintroub's avatar
      MDEV-26715 Fix mysql_install_db_win tests. · f97c8f7e
      Vladislav Vaintroub authored
      It looks like  C/C reconnect retains the database. It is correct behavior
      However there is a problem that mysql_install_db.exe does not create
      'test' database, thus using mysql_install_db to create datadir,
      then restarting server and reconnecting does not succeed, if 'test' was
      current db before reconnect.
      
      The problem became apparent with MDEV-26715. Why it worked before,
      with a simpler 'root' definition is a mystery.
      
      Fix is to switch current connection to 'mysql' database, prior to
      reconnect to the instance created via mysql_install_db.exe
      f97c8f7e
    • Vladislav Vaintroub's avatar
      MDEV-26715 Windows/installer - allow passwordless login for root · 125e172a
      Vladislav Vaintroub authored
      Allow passwordless login in addition to usual login with password, when
      creating 'root' user during install.
      
      The effect of that change is that "local administrators" group are
      allowed to connect as root user. This is done via gssapi authentication
      plugin.
      
      Clients that are not aware of gssapi client plugin, can still login with
      password credentials.
      125e172a
  2. 03 Nov, 2022 6 commits
  3. 02 Nov, 2022 11 commits
  4. 01 Nov, 2022 13 commits
  5. 31 Oct, 2022 2 commits
  6. 29 Oct, 2022 4 commits
  7. 28 Oct, 2022 1 commit
    • Vlad Lesin's avatar
      MDEV-28709 unexpected X lock on Supremum in READ COMMITTED · 2f421688
      Vlad Lesin authored
      Post-push fix. The flag of transaction which indicates that it's necessary
      to forbid gap lock inheritance after XA PREPARE could be inverted if
      lock_release_on_prepare_try() is invoked several times. The fix is to
      toggle it on lock_release_on_prepare() exit.
      2f421688