Skip to content

Commit 13d1ec4

Browse files
committed
MariaDB 10.6 compatibility
Related to MariaDB/server@b6cfb29
1 parent 5397a80 commit 13d1ec4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service/AbstractDatabase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private static function getMysqlArgs(): string
108108
// It's possible to have no password at all
109109
$password = $password ? '-p' . $password : '';
110110

111-
return "--user=$username $password --host=$host --port=$port $database";
111+
return "--user=$username $password --host=$host --protocol tcp --port=$port $database";
112112
}
113113

114114
final public static function loadRemoteData(string $remote): void

0 commit comments

Comments
 (0)