Apply this :class:`.SyntaxExtension` to an :class:`_sql.Insert`
(self, insert_stmt: Insert)
| 1313 | ) |
| 1314 | |
| 1315 | def apply_to_insert(self, insert_stmt: Insert) -> None: |
| 1316 | """Apply this :class:`.SyntaxExtension` to an :class:`_sql.Insert`""" |
| 1317 | raise NotImplementedError( |
| 1318 | f"Extension {type(self).__name__} cannot be applied to insert" |
| 1319 | ) |
| 1320 | |
| 1321 | |
| 1322 | class Executable(roles.StatementRole): |
no outgoing calls
no test coverage detected