add utils function to get server type (MySQL vs MariaDB)

This commit is contained in:
Laurent Indermuehle 2023-10-11 15:55:29 +02:00
parent a7ea11353c
commit 3da5b34006
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
2 changed files with 8 additions and 0 deletions

View file

@ -194,6 +194,13 @@ def mysql_common_argument_spec():
)
def get_server_type(cursor):
""" Return MySQL or MariaDB after quering the server
using SELECT VERSION()"""
srv_ver = get_server_version(cursor)
return 'mariadb' if 'mariadb' in srv_ver.lower() else "mysql"
def get_server_version(cursor):
"""Returns a string representation of the server version."""
cursor.execute("SELECT VERSION() AS version")

View file

@ -16,6 +16,7 @@ from ansible.module_utils.six import iteritems
from ansible_collections.community.mysql.plugins.module_utils.mysql import (
mysql_driver,
get_server_type,
)