Fix mysql.py logic related to 53326 (#61832)

(cherry picked from commit e4d4e49388)
This commit is contained in:
Andrey Klychkov 2019-09-06 15:53:54 +03:00 committed by Toshio Kuratomi
parent df4f0e4ec2
commit 307c8c6a49
3 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- mysql - Fix ``mysql_connect`` function's logic related to the ``cursor_class`` keyword argument (https://github.com/ansible/ansible/pull/61832).

View file

@ -84,7 +84,7 @@ def mysql_connect(module, login_user=None, login_password=None, config_file='',
except Exception as e:
module.fail_json(msg="unable to connect to database: %s" % to_native(e))
if cursor_class is not None:
if cursor_class == 'DictCursor':
return db_connection.cursor(**{_mysql_cursor_param: mysql_driver.cursors.DictCursor})
else:
return db_connection.cursor()

View file

@ -257,7 +257,8 @@ def main():
login_user = module.params["login_user"]
try:
cursor = mysql_connect(module, login_user, login_password, config_file, ssl_cert, ssl_key, ssl_ca, None, 'mysql_driver.cursors.DictCursor',
cursor = mysql_connect(module, login_user, login_password, config_file,
ssl_cert, ssl_key, ssl_ca, None, cursor_class='DictCursor',
connect_timeout=connect_timeout)
except Exception as e:
if os.path.exists(config_file):