fix(cli): Use mysql CLI as fallback is mariadb isnt found (#23004)
This commit is contained in:
parent
68d586e206
commit
bedef22f34
1 changed files with 1 additions and 1 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue