Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 70 | |
| 71 | // Format implements the NodeFormatter interface. |
| 72 | func (node *SetTransaction) Format(ctx *FmtCtx) { |
| 73 | ctx.WriteString("SET TRANSACTION") |
| 74 | node.Modes.Format(ctx) |
| 75 | } |
| 76 | |
| 77 | // SetSessionAuthorizationDefault represents a SET SESSION AUTHORIZATION DEFAULT |
| 78 | // statement. This can be extended (and renamed) if we ever support names in the |