Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 1659 | |
| 1660 | // Format implements the NodeFormatter interface. |
| 1661 | func (node *CollateExpr) Format(ctx *FmtCtx) { |
| 1662 | exprFmtWithParen(ctx, node.Expr) |
| 1663 | ctx.WriteString(" COLLATE ") |
| 1664 | lex.EncodeLocaleName(&ctx.Buffer, node.Locale) |
| 1665 | } |
| 1666 | |
| 1667 | // TupleStar represents (E).* expressions. |
| 1668 | // It is meant to evaporate during star expansion. |
nothing calls this directly
no test coverage detected