Format formats the node.
(buf *nodeBuffer)
| 347 | |
| 348 | // Format formats the node. |
| 349 | func (node *CommonTableExpr) Format(buf *nodeBuffer) { |
| 350 | buf.Printf("%v AS (%v)", node.Name, node.Definition) |
| 351 | } |
| 352 | |
| 353 | // Stream represents a SELECT statement. |
| 354 | type Stream struct { |