mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Fix issue by using dict attribute
This commit is contained in:
parent
b2072a2b24
commit
db4c50e64c
1 changed files with 1 additions and 1 deletions
|
@ -756,7 +756,7 @@ def main():
|
||||||
module.fail_json(msg)
|
module.fail_json(msg)
|
||||||
|
|
||||||
cursor.execute("SELECT VERSION()")
|
cursor.execute("SELECT VERSION()")
|
||||||
if 'mariadb' in cursor.fetchone()[0].lower():
|
if 'mariadb' in cursor.fetchone()["VERSION()"].lower():
|
||||||
server_implementation = "mariadb"
|
server_implementation = "mariadb"
|
||||||
else:
|
else:
|
||||||
server_implementation = "mysql"
|
server_implementation = "mysql"
|
||||||
|
|
Loading…
Add table
Reference in a new issue