Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 202 | |
| 203 | // Format implements the NodeFormatter interface. |
| 204 | func (node *Savepoint) Format(ctx *FmtCtx) { |
| 205 | ctx.WriteString("SAVEPOINT ") |
| 206 | node.Name.Format(ctx) |
| 207 | } |
| 208 | |
| 209 | // ReleaseSavepoint represents a RELEASE SAVEPOINT <name> statement. |
| 210 | type ReleaseSavepoint struct { |