Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 91 | |
| 92 | // Format implements the NodeFormatter interface. |
| 93 | func (node *SetSessionCharacteristics) Format(ctx *FmtCtx) { |
| 94 | ctx.WriteString("SET SESSION CHARACTERISTICS AS TRANSACTION") |
| 95 | node.Modes.Format(ctx) |
| 96 | } |
| 97 | |
| 98 | // SetTracing represents a SET TRACING statement. |
| 99 | type SetTracing struct { |