(ctx *FmtCtx)
| 11 | } |
| 12 | |
| 13 | func (c *CheckExternalConnection) Format(ctx *FmtCtx) { |
| 14 | ctx.WriteString("CHECK EXTERNAL CONNECTION ") |
| 15 | ctx.FormatURI(c.URI) |
| 16 | if !c.Options.IsDefault() { |
| 17 | ctx.WriteString(" WITH OPTIONS (") |
| 18 | ctx.FormatNode(&c.Options) |
| 19 | ctx.WriteString(")") |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | var _ Statement = &CheckExternalConnection{} |
| 24 |
nothing calls this directly
no test coverage detected