mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fix sanity checks
This commit is contained in:
parent
690ac6fb13
commit
aa7c5be84a
1 changed files with 3 additions and 0 deletions
|
@ -206,12 +206,14 @@ def get_server_version(cursor):
|
||||||
|
|
||||||
return version_str
|
return version_str
|
||||||
|
|
||||||
|
|
||||||
def get_server_implementation(cursor):
|
def get_server_implementation(cursor):
|
||||||
if 'mariadb' in get_server_version(cursor).lower():
|
if 'mariadb' in get_server_version(cursor).lower():
|
||||||
return "mariadb"
|
return "mariadb"
|
||||||
else:
|
else:
|
||||||
return "mysql"
|
return "mysql"
|
||||||
|
|
||||||
|
|
||||||
def is_mariadb(implementation):
|
def is_mariadb(implementation):
|
||||||
if implementation == "mariadb":
|
if implementation == "mariadb":
|
||||||
return True
|
return True
|
||||||
|
@ -224,6 +226,7 @@ def is_mysql(implementation):
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def set_session_vars(module, cursor, session_vars):
|
def set_session_vars(module, cursor, session_vars):
|
||||||
"""Set session vars."""
|
"""Set session vars."""
|
||||||
for var, value in session_vars.items():
|
for var, value in session_vars.items():
|
||||||
|
|
Loading…
Add table
Reference in a new issue