Bug #75927 | SET PASSWORD=PASSWORD(...) SHOULD be supported, but deprecated. | ||
---|---|---|---|
Submitted: | 17 Feb 2015 8:52 | Modified: | 25 Feb 2015 13:12 |
Reporter: | Georgi Kodinov | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Security: Privileges | Severity: | S3 (Non-critical) |
Version: | 5.7.6 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[17 Feb 2015 8:52]
Georgi Kodinov
[18 Feb 2015 5:55]
MySQL Verification Team
Bug #75928 marked as duplicate of this
[25 Feb 2015 13:12]
Paul DuBois
Noted in 5.7.7 changelog. SET PASSWORD ... = PASSWORD('auth_string') syntax was to be deprecated in MySQL 5.7.6, but was made illegal. This syntax is now available again, but generates a warning due to its deprecated status. These alternatives remain available, the first of which now should be considered the preferred form: ALTER USER ... IDENTIFIED BY 'auth_string'; SET PASSWORD ... = 'auth_string';