(self, savepoint_stmt, **kw)
| 6637 | ) |
| 6638 | |
| 6639 | def visit_release_savepoint(self, savepoint_stmt, **kw): |
| 6640 | return "RELEASE SAVEPOINT %s" % self.preparer.format_savepoint( |
| 6641 | savepoint_stmt |
| 6642 | ) |
| 6643 | |
| 6644 | |
| 6645 | class StrSQLCompiler(SQLCompiler): |
nothing calls this directly
no test coverage detected