Add IF EXISTS clause to DROP USER statement (#307)

* Add IF EXISTS clause to DROP USER statement

* Add a changelog fragment

* Fix exception
This commit is contained in:
Andrew Klychkov 2022-03-15 15:41:55 +03:00 committed by GitHub
parent 1f16e65dfc
commit 3a452faeb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- "mysql_user - fix the possibility for a race condition that breaks certain (circular) replication configurations when ``DROP USER`` is executed on multiple nodes in the replica set. Adding ``IF EXISTS`` avoids the need to use ``sql_log_bin: no`` making the statement always replication safe (https://github.com/ansible-collections/community.mysql/pull/287)."

View file

@ -368,6 +368,9 @@ def user_delete(cursor, user, host, host_all, check_mode):
hostnames = [host]
for hostname in hostnames:
try:
cursor.execute("DROP USER IF EXISTS %s@%s", (user, hostname))
except Exception:
cursor.execute("DROP USER %s@%s", (user, hostname))
return True