Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 289 | |
| 290 | // Format implements the NodeFormatter interface. |
| 291 | func (node *RollbackToSavepoint) Format(ctx *FmtCtx) { |
| 292 | ctx.WriteString("ROLLBACK TRANSACTION TO SAVEPOINT ") |
| 293 | node.Savepoint.Format(ctx) |
| 294 | } |
nothing calls this directly
no test coverage detected