Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 175 | |
| 176 | // Format implements the NodeFormatter interface. |
| 177 | func (node *SetTransaction) Format(ctx *FmtCtx) { |
| 178 | ctx.WriteString("SET TRANSACTION") |
| 179 | node.Modes.Format(ctx) |
| 180 | } |
| 181 | |
| 182 | // SetSessionCharacteristics represents a SET SESSION CHARACTERISTICS AS TRANSACTION statement. |
| 183 | type SetSessionCharacteristics struct { |
nothing calls this directly
no test coverage detected