Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 71 | |
| 72 | // Format implements the NodeFormatter interface. |
| 73 | func (at *AllTablesSelector) Format(ctx *FmtCtx) { |
| 74 | at.ObjectNamePrefix.Format(ctx) |
| 75 | if at.ExplicitSchema || ctx.alwaysFormatTablePrefix() { |
| 76 | ctx.WriteByte('.') |
| 77 | } |
| 78 | ctx.WriteByte('*') |
| 79 | } |
| 80 | func (at *AllTablesSelector) String() string { return AsString(at) } |
| 81 | |
| 82 | // NormalizeTablePattern implements the TablePattern interface. |
nothing calls this directly
no test coverage detected