[Ubuntu] Downgrade mysql to 8.0.26 (#4674)

This commit is contained in:
Mikhail Koliada
2021-12-07 23:38:14 +03:00
committed by GitHub
parent 4a8cc99a63
commit 77f9a979a8
3 changed files with 28 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ function Get-SqliteVersion {
}
function Get-MySQLVersion {
$mySQLVersion = mysqld --version | Take-OutputPart -Part 2 | Take-OutputPart -Part 0 -Delimiter "-"
$mySQLVersion = mysqld --version | Take-OutputPart -Part 2
return "MySQL $mySQLVersion"
}