Commit 23103bdd authored by Ian Kelly's avatar Ian Kelly
Browse files

Fixed another case-sensitivity bug in Oracle introspection. This one was...

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
parent 5a79b552
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):