Issue #3186332: Create mysql user grants for @'::1'
Compare changes
Conflict: This file was modified in both the source and target branches.
Ask someone with write access to resolve it.
+ 25
− 0
@@ -61,6 +61,10 @@ class Provision_Service_db_mysql extends Provision_Service_db_pdo {
@@ -61,6 +61,10 @@ class Provision_Service_db_mysql extends Provision_Service_db_pdo {
$success_extra_host = $this->query("GRANT ALL PRIVILEGES ON `%s`.* TO `%s`@`%s` IDENTIFIED BY '%s'", $name, $username, $extra_host, $password);
return $this->query("GRANT ALL PRIVILEGES ON `%s`.* TO `%s`@`%s` IDENTIFIED BY '%s'", $name, $username, $host, $password);
@@ -108,6 +112,27 @@ class Provision_Service_db_mysql extends Provision_Service_db_pdo {
@@ -108,6 +112,27 @@ class Provision_Service_db_mysql extends Provision_Service_db_pdo {
$success_extra_host = $this->query("DROP USER `%s`@`%s`", $username, $extra_host) && $success_extra_host;