mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
* Fix show master status for MySQL 8.2+ * Fix mysqldump option form --master-data to --source-data * Fix incompatibility between mysqldump 8.0 and MySQL 8.4 Installing the same version between the client and the server makes sense anyway. The incompatibility arise when you use mysqldump with --source-data. The the tool tries to perform a SHOW MASTER STATUS which is deprecated in MySQL 8.2+. * Fix missing condition * Fix unit tests * Add a query resolver depending on implementation and version * Sanity * Fix SHOW REPLICA STATUS queries * Fix mariadb's SHOW REPLICA HOSTS query * Fix CHANGE MASTER for MySQL 8.0.23+ * Fix integration test for CHANGE MASTER * Fix integration test for CHANGE MASTER * Fix replication queries for MySQL 8.0.23+ and 8.4+ * Revert file edited by mistake * Enhance tests format
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
# Copyright: (c) 2019, Andrew Klychkov (@Andersson007) <aaklychkov@mail.ru>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# Initial CI tests of mysql_replication module:
|
|
- import_tasks: mysql_replication_initial.yml
|
|
|
|
# Tests of replication filters and force_context
|
|
- include_tasks: issue-265.yml
|
|
|
|
# Tests of primary_delay parameter:
|
|
- import_tasks: mysql_replication_primary_delay.yml
|
|
|
|
# Tests of channel parameter:
|
|
- import_tasks: mysql_replication_channel.yml
|
|
when:
|
|
- db_engine == 'mysql' # FIXME: mariadb introduces FOR CHANNEL in 10.7
|
|
|
|
# Tests of resetprimary mode:
|
|
- import_tasks: mysql_replication_resetprimary_mode.yml
|
|
|
|
- include_tasks: issue-28.yml
|
|
|
|
# Tests of changereplication mode:
|
|
- import_tasks: mysql_replication_changereplication_mode.yml
|
|
when:
|
|
- db_engine == 'mysql'
|
|
- db_version is version('8.0.23', '>=')
|