Format formats the node.
(buf *nodeBuffer)
| 309 | |
| 310 | // Format formats the node. |
| 311 | func (node *Union) Format(buf *nodeBuffer) { |
| 312 | buf.Printf("%v%v %s %v%v%v%s", node.With, node.Left, node.Type, node.Right, |
| 313 | node.OrderBy, node.Limit, node.Lock) |
| 314 | } |
| 315 | |
| 316 | // With represents a WITH clause (Common Table Expressions) |
| 317 | type With struct { |