From 23103bddb98d493ed452d25a88c5563b7f8dad18 Mon Sep 17 00:00:00 2001 From: Ian Kelly Date: Wed, 9 Mar 2011 22:45:20 +0000 Subject: [PATCH] Fixed another case-sensitivity bug in Oracle introspection. This one was harmless, but it was causing an irritating test failure. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15787 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/oracle/introspection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/oracle/introspection.py b/django/db/backends/oracle/introspection.py index 1ccbd28599..b8a8b2e2c1 100644 --- a/django/db/backends/oracle/introspection.py +++ b/django/db/backends/oracle/introspection.py @@ -83,7 +83,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): relations = {} for row in cursor.fetchall(): - relations[row[0]] = (row[2], row[1]) + relations[row[0]] = (row[2], row[1].lower()) return relations def get_indexes(self, cursor, table_name):