Kaydet (Commit) aa8ee6a5 authored tarafından Shai Berger's avatar Shai Berger

Fixed test failures in Oracle introspection

Refs #17785
üst 5d7217dc
......@@ -98,7 +98,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection):
relations = {}
for row in cursor.fetchall():
relations[row[0]] = (row[2], row[1].lower())
relations[row[0].lower()] = (row[2].lower(), row[1].lower())
return relations
def get_key_columns(self, cursor, table_name):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment