MockConnection (i.e., that used with
strategy="mock") which acts as a pass through
for arguments.
time if parameters will be present in
some cases). [ticket:2407]
+ - [bug] Added execution_options() call to
+ MockConnection (i.e., that used with
+ strategy="mock") which acts as a pass through
+ for arguments.
+
- [feature] Added pool_reset_on_return argument
to create_engine, allows control over
"connection return" behavior. Also added
def contextual_connect(self, **kwargs):
return self
+ def execution_options(self, **kw):
+ return self
+
def compiler(self, statement, parameters, **kwargs):
return self._dialect.compiler(
statement, parameters, engine=self, **kwargs)