Skip to content

Commit a902a95

Browse files
committed
Merge branch 'azure-2.0' into azure-2.1
2 parents c1d7fb8 + 637d349 commit a902a95

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

sql_server/pyodbc/base.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,6 @@ def __init__(self, *args, **kwargs):
207207
ops[op] = '%s COLLATE %s' % (sql, collation)
208208
self.operators.update(ops)
209209

210-
self.features = DatabaseFeatures(self)
211-
self.ops = DatabaseOperations(self)
212-
self.client = DatabaseClient(self)
213-
self.creation = DatabaseCreation(self)
214-
self.introspection = DatabaseIntrospection(self)
215-
self.validation = BaseDatabaseValidation(self)
216-
217210
def create_cursor(self, name=None):
218211
return CursorWrapper(self.connection.cursor(), self)
219212

@@ -372,10 +365,6 @@ def is_usable(self):
372365
else:
373366
return True
374367

375-
def schema_editor(self, *args, **kwargs):
376-
"Returns a new instance of this backend's SchemaEditor"
377-
return DatabaseSchemaEditor(self, *args, **kwargs)
378-
379368
@cached_property
380369
def sql_server_version(self, _known_versions={}):
381370
"""

0 commit comments

Comments
 (0)