summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/mock.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-10-30 14:44:55 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-10-31 15:37:08 -0400
commitaa026c302c6b188a7e28508f9ecb603809b9e03f (patch)
treebf4de51d5f585dc5b8b07b2b584b6182ab7aab3a /lib/sqlalchemy/engine/mock.py
parentcdce33e2ccb60365f12eb07c0b86fdc2b89b5033 (diff)
downloadsqlalchemy-aa026c302c6b188a7e28508f9ecb603809b9e03f.tar.gz
2.0 removals: LegacyRow, connectionless execution, close_with_result
in order to remove LegacyRow / LegacyResult, we have to also lose close_with_result, which connectionless execution relies upon. also includes a new profiles.txt file that's all against py310, as that's what CI is on now. some result counts changed by one function call which was enough to fail the low-count result tests. Replaces Connectable as the common interface between Connection and Engine with EngineEventsTarget. Engine is no longer Connectable. Connection and MockConnection still are. References: #7257 Change-Id: Iad5eba0313836d347e65490349a22b061356896a
Diffstat (limited to 'lib/sqlalchemy/engine/mock.py')
-rw-r--r--lib/sqlalchemy/engine/mock.py24
1 files changed, 3 insertions, 21 deletions
diff --git a/lib/sqlalchemy/engine/mock.py b/lib/sqlalchemy/engine/mock.py
index 803fe30a2..5da716b6b 100644
--- a/lib/sqlalchemy/engine/mock.py
+++ b/lib/sqlalchemy/engine/mock.py
@@ -10,7 +10,6 @@ from operator import attrgetter
from . import base
from . import url as _url
from .. import util
-from ..sql import ddl
class MockConnection(base.Connectable):
@@ -22,32 +21,15 @@ class MockConnection(base.Connectable):
dialect = property(attrgetter("_dialect"))
name = property(lambda s: s._dialect.name)
- def schema_for_object(self, obj):
- return obj.schema
-
def connect(self, **kwargs):
return self
+ def schema_for_object(self, obj):
+ return obj.schema
+
def execution_options(self, **kw):
return self
- def compiler(self, statement, parameters, **kwargs):
- return self._dialect.compiler(
- statement, parameters, engine=self, **kwargs
- )
-
- def create(self, entity, **kwargs):
- kwargs["checkfirst"] = False
-
- ddl.SchemaGenerator(self.dialect, self, **kwargs).traverse_single(
- entity
- )
-
- def drop(self, entity, **kwargs):
- kwargs["checkfirst"] = False
-
- ddl.SchemaDropper(self.dialect, self, **kwargs).traverse_single(entity)
-
def _run_ddl_visitor(
self, visitorcallable, element, connection=None, **kwargs
):