Commit 4abadc48 authored by Adam Chainz's avatar Adam Chainz Committed by Tim Graham
Browse files

[1.8.x] Removed unused foreign_key_re variables in MySQL/Oracle DB backends

Backport of e9282747 from master
parent 5068a51d
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
import re
from collections import namedtuple

from MySQLdb.constants import FIELD_TYPE
@@ -11,8 +10,6 @@ from django.utils.encoding import force_text

FieldInfo = namedtuple('FieldInfo', FieldInfo._fields + ('extra',))

foreign_key_re = re.compile(r"\sCONSTRAINT `[^`]*` FOREIGN KEY \(`([^`]*)`\) REFERENCES `([^`]*)` \(`([^`]*)`\)")


class DatabaseIntrospection(BaseDatabaseIntrospection):
    data_types_reverse = {
+0 −4
Original line number Diff line number Diff line
import re

import cx_Oracle

from django.db.backends.base.introspection import (
@@ -7,8 +5,6 @@ from django.db.backends.base.introspection import (
)
from django.utils.encoding import force_text

foreign_key_re = re.compile(r"\sCONSTRAINT `[^`]*` FOREIGN KEY \(`([^`]*)`\) REFERENCES `([^`]*)` \(`([^`]*)`\)")


class DatabaseIntrospection(BaseDatabaseIntrospection):
    # Maps type objects to Django Field types.