mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Make TConnectionParameters.IsMySQL specific to MySQL only, and rename the grouped type checks to IsAnyMySQL, IsAnyMSSQL etc. This way the status bar now shows "MySQL", not "MySQL or MariaDB"
This commit is contained in:
@ -581,7 +581,7 @@ begin
|
||||
// http://dev.mysql.com/doc/refman/5.7/en/show-grants.html
|
||||
// As of MySQL 5.7.6, SHOW GRANTS output does not include IDENTIFIED BY PASSWORD clauses.
|
||||
// Use the SHOW CREATE USER statement instead. See Section 14.7.5.12, "SHOW CREATE USER Syntax".
|
||||
if FConnection.Parameters.IsMySQL and (FConnection.ServerVersionInt < 50706) then begin
|
||||
if FConnection.Parameters.IsAnyMySQL and (FConnection.ServerVersionInt < 50706) then begin
|
||||
if not FAdded then begin
|
||||
editPassword.TextHint := FConnection.UnescapeString(rxGrant.Match[10]);
|
||||
// Set password for changed user, to silence the error message about invalid length
|
||||
|
Reference in New Issue
Block a user