mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #13630 -- Made __init__ methods of all DB backends' DatabaseOperations classes take a connection argument. Thanks calexium for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16016 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -133,8 +133,7 @@ class OracleOperations(DatabaseOperations, BaseSpatialOperations):
|
||||
truncate_params = {'relate' : None}
|
||||
|
||||
def __init__(self, connection):
|
||||
super(OracleOperations, self).__init__()
|
||||
self.connection = connection
|
||||
super(OracleOperations, self).__init__(connection)
|
||||
|
||||
def convert_extent(self, clob):
|
||||
if clob:
|
||||
|
||||
Reference in New Issue
Block a user