Format formats the node.
(buf *nodeBuffer)
| 1592 | |
| 1593 | // Format formats the node. |
| 1594 | func (node *AliasedExpr) Format(buf *nodeBuffer) { |
| 1595 | buf.Printf("%v", node.Expr) |
| 1596 | if !node.As.IsEmpty() { |
| 1597 | buf.Printf(" as %v", node.As) |
| 1598 | } |
| 1599 | } |
| 1600 | |
| 1601 | // Columns represents an insert column list. |
| 1602 | type Columns []Ident |