We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af061db commit 3e94241Copy full SHA for 3e94241
common/versionCheck/mysql.go
@@ -22,12 +22,6 @@ func MySQLCheck() {
22
serverBinary = "mysqld"
23
} else if _, err := exec.LookPath("mariadbd"); err == nil {
24
serverBinary = "mariadbd"
25
- } else if _, err := exec.LookPath("mysql"); err == nil {
26
- // Fallback to client binary if server binary isn't available
27
- serverBinary = "mysql"
28
- } else if _, err := exec.LookPath("mariadb"); err == nil {
29
- // Fallback to MariaDB client
30
- serverBinary = "mariadb"
31
}
32
33
if serverBinary == "" {
0 commit comments