Disable a test for idempotency that fails on MySQL 8+ and MariaDB 10.5+

This commit is contained in:
Laurent Indermuehle 2023-03-28 10:02:28 +02:00
parent eb3fcd9ec2
commit 51b103e992
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -1426,6 +1426,7 @@
that:
- result is changed
# TODO This is not idempotent on MySQL 8+ and MariaDB 10.5+
- name: Append privs again
mysql_role:
<<: *mysql_params
@ -1439,6 +1440,10 @@
assert:
that:
- result is not changed
when:
# TODO remove this when stable-2 role append priv is fixed
- (db_engine == 'mysql' and db_version is version('5.7', '<=')
or db_engine == 'mariadb' and db_version is version('10.4', '<='))
- name: Rewrite privs
mysql_role: