Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 145 | |
| 146 | // Format implements the NodeFormatter interface. |
| 147 | func (node *SetTracing) Format(ctx *FmtCtx) { |
| 148 | ctx.WriteString("SET TRACING = ") |
| 149 | // Set tracing values never contain PII and should be distinguished |
| 150 | // for feature tracking purposes. |
| 151 | ctx.WithFlags(ctx.flags&^FmtMarkRedactionNode, func() { |
| 152 | ctx.FormatNode(&node.Values) |
| 153 | }) |
| 154 | } |
nothing calls this directly
no test coverage detected