run a DDL visitor. This method is only here so that the MockConnection can change the options given to the visitor so that "checkfirst" is skipped.
(
self,
visitorcallable: Type[InvokeDDLBase],
element: SchemaVisitable,
**kwargs: Any,
)
| 2420 | raise exc_info[1].with_traceback(exc_info[2]) |
| 2421 | |
| 2422 | def _run_ddl_visitor( |
| 2423 | self, |
| 2424 | visitorcallable: Type[InvokeDDLBase], |
| 2425 | element: SchemaVisitable, |
| 2426 | **kwargs: Any, |
| 2427 | ) -> None: |
| 2428 | """run a DDL visitor. |
| 2429 | |
| 2430 | This method is only here so that the MockConnection can change the |
| 2431 | options given to the visitor so that "checkfirst" is skipped. |
| 2432 | |
| 2433 | """ |
| 2434 | visitorcallable( |
| 2435 | dialect=self.dialect, connection=self, **kwargs |
| 2436 | ).traverse_single(element) |
| 2437 | |
| 2438 | |
| 2439 | class ExceptionContextImpl(ExceptionContext): |
nothing calls this directly
no test coverage detected