Method
_run_ddl_visitor
(
self,
visitorcallable: Type[InvokeDDLBase],
element: SchemaVisitable,
**kwargs: Any,
)
Source from the content-addressed store, hash-verified
| 3226 | yield conn |
| 3227 | |
| 3228 | def _run_ddl_visitor( |
| 3229 | self, |
| 3230 | visitorcallable: Type[InvokeDDLBase], |
| 3231 | element: SchemaVisitable, |
| 3232 | **kwargs: Any, |
| 3233 | ) -> None: |
| 3234 | with self.begin() as conn: |
| 3235 | conn._run_ddl_visitor(visitorcallable, element, **kwargs) |
| 3236 | |
| 3237 | def connect(self) -> Connection: |
| 3238 | """Return a new :class:`_engine.Connection` object. |
Tested by
no test coverage detected