diff options
| author | Ian Kelly <ian.g.kelly@gmail.com> | 2011-03-09 22:45:20 +0000 |
|---|---|---|
| committer | Ian Kelly <ian.g.kelly@gmail.com> | 2011-03-09 22:45:20 +0000 |
| commit | 23103bddb98d493ed452d25a88c5563b7f8dad18 (patch) | |
| tree | e0d7a91a35e670bfb1c301d886cc38b7c8e0d219 | |
| parent | 5a79b55239d9c5a230aca376ced18291b852d7b3 (diff) | |
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
| -rw-r--r-- | django/db/backends/oracle/introspection.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
