Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 267 | |
| 268 | // Format implements the NodeFormatter interface. |
| 269 | func (node *Savepoint) Format(ctx *FmtCtx) { |
| 270 | ctx.WriteString("SAVEPOINT ") |
| 271 | node.Name.Format(ctx) |
| 272 | } |
| 273 | |
| 274 | // ReleaseSavepoint represents a RELEASE SAVEPOINT <name> statement. |
| 275 | type ReleaseSavepoint struct { |
nothing calls this directly
no test coverage detected