mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
feat: adds support for mariadb show binlog status statement
This commit is contained in:
parent
dddce3f55f
commit
351e031d42
2 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
minor_changes:
|
minor_changes:
|
||||||
|
|
||||||
- mysql_replication - Adds support for `SHOW BINARY LOG STATUS` on getprimary mode.
|
- mysql_replication - Adds support for `SHOW BINARY LOG STATUS` and `SHOW BINLOG STATUS` on getprimary mode.
|
||||||
|
|
|
@ -316,9 +316,13 @@ def get_primary_status(cursor):
|
||||||
term = "MASTER"
|
term = "MASTER"
|
||||||
|
|
||||||
version = get_server_version(cursor)
|
version = get_server_version(cursor)
|
||||||
if get_server_implementation(cursor) == "mysql" and LooseVersion(version) >= LooseVersion("8.2.0"):
|
server_implementation = get_server_implementation(cursor)
|
||||||
|
if server_implementation == "mysql" and LooseVersion(version) >= LooseVersion("8.2.0"):
|
||||||
term = "BINARY LOG"
|
term = "BINARY LOG"
|
||||||
|
|
||||||
|
if server_implementation == "mariadb" and LooseVersion(version) >= LooseVersion("10.5.2"):
|
||||||
|
term = "BINLOG"
|
||||||
|
|
||||||
cursor.execute("SHOW %s STATUS" % term)
|
cursor.execute("SHOW %s STATUS" % term)
|
||||||
|
|
||||||
primarystatus = cursor.fetchone()
|
primarystatus = cursor.fetchone()
|
||||||
|
|
Loading…
Add table
Reference in a new issue