Update plugins/module_utils/mysql.py

Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
Laurent Indermühle 2023-09-25 11:38:36 +02:00 committed by Laurent Indermuehle
parent b081ca495b
commit 776cb51f25
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -197,10 +197,7 @@ def get_server_type(cursor):
""" Return MySQL or MariaDB after quering the server
using SELECT VERSION()"""
srv_ver = get_server_version(cursor)
if 'mariadb' in srv_ver.lower():
return "mariadb"
else:
return "mysql"
return 'mariadb' if 'mariadb' in srv_ver.lower() else "mysql"
def get_server_version(cursor):