From a0e3cbaa2bcbab682dfc3fb2998c3b43b21a3741 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 31 Mar 2016 11:49:12 -0400 Subject: [PATCH] [1.9.x] Refs #26384, #24995 -- Skipped a schema test on older MySQL versions. Backport of f3595b25496691966d4ff858a3b395735ad85a6e from master --- tests/schema/tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/schema/tests.py b/tests/schema/tests.py index 24007352b9..eb657f4fbe 100644 --- a/tests/schema/tests.py +++ b/tests/schema/tests.py @@ -1819,6 +1819,10 @@ class SchemaTests(TransactionTestCase): ['schema_tag_slug_2c418ba3_like', 'schema_tag_slug_key'] ) + @unittest.skipIf( + connection.vendor == 'mysql' and connection.mysql_version < (5, 6, 6), + 'Skip known bug renaming primary keys on older MySQL versions (#24995).' + ) def test_alter_pk_with_self_referential_field(self): """ Changing the primary key field name of a model with a self-referential