diff options
| author | Ian Kelly <ian.g.kelly@gmail.com> | 2011-03-09 22:47:25 +0000 |
|---|---|---|
| committer | Ian Kelly <ian.g.kelly@gmail.com> | 2011-03-09 22:47:25 +0000 |
| commit | 317f30a77f744281137cde87ca59855761c8e86e (patch) | |
| tree | 7c3df7edc7355865c1baa8a1293d5f2d77c3b15b | |
| parent | 76636c81cddb553877fed80f62655de72d0735f9 (diff) | |
[1.2.X] Fixed another case-sensitivity bug in Oracle introspection. This one was harmless, but it was causing an irritating test failure.
Backport of r15787 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15788 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): |
