You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The native password module used was deprecated with MySQL8 and doesn't work with MySQL9
anymore. It seems we don't need it anymore (I think we needed it because
the mariadb-utils did not have support for caching_sha2_password yet), but the alternative is to
keep using the MySQL8 container and not test for MySQL9.
Under the hood in the past we used to store the password as a hash in
the mysql.user table and now it's stored in another way
(https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password)
which should also give better performance.
See: https://dba.stackexchange.com/a/209520
(cherry picked from commit 9c2bb99)
0 commit comments