Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 213 | |
| 214 | // Format implements the NodeFormatter interface. |
| 215 | func (node *ReleaseSavepoint) Format(ctx *FmtCtx) { |
| 216 | ctx.WriteString("RELEASE SAVEPOINT ") |
| 217 | node.Savepoint.Format(ctx) |
| 218 | } |
| 219 | |
| 220 | // RollbackToSavepoint represents a ROLLBACK TO SAVEPOINT <name> statement. |
| 221 | type RollbackToSavepoint struct { |