From c5e2ecae6949d4e89530610d768bbbd563ddc19b Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Mon, 17 Sep 2012 23:45:00 +0100 Subject: Fix bug in get_indexes affecting the tests --- django/db/backends/mysql/introspection.py | 1 + 1 file changed, 1 insertion(+) (limited to 'django/db/backends/mysql') diff --git a/django/db/backends/mysql/introspection.py b/django/db/backends/mysql/introspection.py index 93e89c1263..477478ca9d 100644 --- a/django/db/backends/mysql/introspection.py +++ b/django/db/backends/mysql/introspection.py @@ -103,6 +103,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): continue if row[4] not in indexes: indexes[row[4]] = {'primary_key': False, 'unique': False} + # It's possible to have the unique and PK constraints in separate indexes. if row[2] == 'PRIMARY': indexes[row[4]]['primary_key'] = True if not bool(row[1]): -- cgit v1.3