Format implements the Statement interface.
(ctx *FmtCtx)
| 2192 | |
| 2193 | // Format implements the Statement interface. |
| 2194 | func (node *CreateExternalConnection) Format(ctx *FmtCtx) { |
| 2195 | ctx.WriteString("CREATE EXTERNAL CONNECTION") |
| 2196 | ctx.FormatNode(&node.ConnectionLabelSpec) |
| 2197 | ctx.WriteString(" AS ") |
| 2198 | ctx.FormatURI(node.As) |
| 2199 | } |
| 2200 | |
| 2201 | // CreateTenant represents a CREATE VIRTUAL CLUSTER statement. |
| 2202 | type CreateTenant struct { |
nothing calls this directly
no test coverage detected