Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 1633 | |
| 1634 | // Format implements the NodeFormatter interface. |
| 1635 | func (node *CollateExpr) Format(ctx *FmtCtx) { |
| 1636 | exprFmtWithParen(ctx, node.Expr) |
| 1637 | ctx.WriteString(" COLLATE ") |
| 1638 | lex.EncodeLocaleName(&ctx.Buffer, node.Locale) |
| 1639 | } |
| 1640 | |
| 1641 | // TupleStar represents (E).* expressions. |
| 1642 | // It is meant to evaporate during star expansion. |
nothing calls this directly
no test coverage detected