(self, savepoint_stmt, **kw)
| 6873 | ) |
| 6874 | |
| 6875 | def visit_release_savepoint(self, savepoint_stmt, **kw): |
| 6876 | return "RELEASE SAVEPOINT %s" % self.preparer.format_savepoint( |
| 6877 | savepoint_stmt |
| 6878 | ) |
| 6879 | |
| 6880 | |
| 6881 | class StrSQLCompiler(SQLCompiler): |
nothing calls this directly
no test coverage detected