(self, statement)
| 1848 | dialect: MSDialect |
| 1849 | |
| 1850 | def _opt_encode(self, statement): |
| 1851 | if self.compiled and self.compiled.schema_translate_map: |
| 1852 | rst = self.compiled.preparer._render_schema_translates |
| 1853 | statement = rst(statement, self.compiled.schema_translate_map) |
| 1854 | |
| 1855 | return statement |
| 1856 | |
| 1857 | def pre_exec(self): |
| 1858 | """Activate IDENTITY_INSERT if needed.""" |
no outgoing calls
no test coverage detected