-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix using password hashes with MariaDB #54343
Conversation
MariaDB always needs the 'PASSWORD' keyword when working with password hashes, also when ALTER USER is being used.
just a note, this will have to be looked at in 2019.2 as the second part of the diff is actually:
Not sure why args is not used, i'll take your version and apply it to the recent release, which is actually the one i'm trying to fix. But thanks for getting into 2018.3 |
apparently i have to dig a bit deeper, I'm on release |
if anyone is looking to patch the current release, there is a |
This should probably be rebuild since the build fails on:
Which doesn't really seem related to this change |
@garethgreenaway Any chance we could move this forward. Currently we have to create our own rpms because of this :-/ |
@pprkut This needs to be re-opened against the |
MariaDB 10.2.0 introduced the 'ALTER USER' statement, but it did NOT remove the need to denote password hashes with the PASSWORD keyword.
Both CREATE USER as well as ALTER USER still need
IDENTIFIED BY PASSWORD
This should be a more complete fix compared to previous attempts in #53861 and #54299