Commit aa8ee6a5 authored by Shai Berger's avatar Shai Berger
Browse files

Fixed test failures in Oracle introspection

Refs #17785
parent 5d7217dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):