helper context manager that will apply appropriate DDL events to a CREATE or DROP operation.
(self, target, **kw)
| 1261 | |
| 1262 | @contextlib.contextmanager |
| 1263 | def with_ddl_events(self, target, **kw): |
| 1264 | """helper context manager that will apply appropriate DDL events |
| 1265 | to a CREATE or DROP operation.""" |
| 1266 | |
| 1267 | raise NotImplementedError() |
| 1268 | |
| 1269 | |
| 1270 | class InvokeCreateDDLBase(InvokeDDLBase): |
no outgoing calls
no test coverage detected