fix(cli): Use mysql CLI as fallback is mariadb isnt found (#23004)

This commit is contained in:
gavin 2023-10-30 15:18:04 +01:00 committed by GitHub
parent 68d586e206
commit bedef22f34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -504,7 +504,7 @@ def postgres(context, extra_args):
def _mariadb(extra_args=None):
mariadb = which("mariadb")
mariadb = which("mariadb") or which("mysql")
command = [
mariadb,
"--port",