mirror of
https://github.com/django/django.git
synced 2025-09-28 13:04:54 +00:00
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
This commit is contained in:
parent
5a79b55239
commit
23103bddb9
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection):
|
||||||
|
|
||||||
relations = {}
|
relations = {}
|
||||||
for row in cursor.fetchall():
|
for row in cursor.fetchall():
|
||||||
relations[row[0]] = (row[2], row[1])
|
relations[row[0]] = (row[2], row[1].lower())
|
||||||
return relations
|
return relations
|
||||||
|
|
||||||
def get_indexes(self, cursor, table_name):
|
def get_indexes(self, cursor, table_name):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue