-
Notifications
You must be signed in to change notification settings - Fork 74
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
Support for MariaDB 10.5 #37
Comments
…for MariaDB 10.3 Looks like there is no IDENTIFIED BY in MariaDB
It would be interesting to see what happens when using the simple statement: |
Testing under MySQL 5.7 resulted in an error. |
CREATE USER $DB{OTOBODBUser}@$HostIDENTIFIED BY '$DB{OTOBODBPassword}' works for MySQL 5.7 and MariaDB. Thanks Bernhard! |
MySQL 8 works too. Changed and closed. |
This is broken again for MaraDB as MariaDB chokes on the 'WITH mysql_native_password' . @StefanRother-OTOBO please reopen the isssue. |
ManiaDB 10.5 does not spport the
CREATE USER ... IDENTIFIED WITH .. BY ...
syntax. An alternative might be to useIDENTIFIED WITH .. AS PASSWORD(...)
. This should also work on MySQL 5.7 and MySQL 8.The text was updated successfully, but these errors were encountered: