I'm using Compose for MySQL which uses MySQL 5.7 Group Replication
When trying doing DB tests with Django 1.11.4 i get errors regarding the rollback_test (because it doesn't hold the requirement of Primary Key)
and transaction-write-set-extraction!=OFF requirement for creating SAVEPOINTS.
django.db.utils.OperationalError: (1290, 'The MySQL server is running with the --transaction-write-set-extraction!=OFF option so it cannot execute this statement')
Everything works well besides the tests.
Is there any way to tell Django that it's a Group-Replication MySQL DB and avoid these specific tests?