Format formats the node.
(buf *nodeBuffer)
| 1578 | |
| 1579 | // Format formats the node. |
| 1580 | func (node *StarExpr) Format(buf *nodeBuffer) { |
| 1581 | if !node.TableName.IsEmpty() { |
| 1582 | buf.Printf("%v.", node.TableName) |
| 1583 | } |
| 1584 | buf.Printf("*") |
| 1585 | } |
| 1586 | |
| 1587 | // AliasedExpr defines an aliased SELECT expression. |
| 1588 | type AliasedExpr struct { |