mirror of
https://github.com/django/django.git
synced 2025-11-13 09:02:02 +00:00
Fixed a case-sensitivity bug in Oracle introspection that was preventing inspectdb from identifying foreign keys.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15785 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
0cf527f77c
commit
5a79b55239
1 changed files with 1 additions and 0 deletions
|
|
@ -66,6 +66,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection):
|
||||||
Returns a dictionary of {field_index: (field_index_other_table, other_table)}
|
Returns a dictionary of {field_index: (field_index_other_table, other_table)}
|
||||||
representing all relationships to the given table. Indexes are 0-based.
|
representing all relationships to the given table. Indexes are 0-based.
|
||||||
"""
|
"""
|
||||||
|
table_name = table_name.upper()
|
||||||
cursor.execute("""
|
cursor.execute("""
|
||||||
SELECT ta.column_id - 1, tb.table_name, tb.column_id - 1
|
SELECT ta.column_id - 1, tb.table_name, tb.column_id - 1
|
||||||
FROM user_constraints, USER_CONS_COLUMNS ca, USER_CONS_COLUMNS cb,
|
FROM user_constraints, USER_CONS_COLUMNS ca, USER_CONS_COLUMNS cb,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue