Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 224 | |
| 225 | // Format implements the NodeFormatter interface. |
| 226 | func (node *RollbackToSavepoint) Format(ctx *FmtCtx) { |
| 227 | ctx.WriteString("ROLLBACK TRANSACTION TO SAVEPOINT ") |
| 228 | node.Savepoint.Format(ctx) |
| 229 | } |