Stream represents a SELECT statement.
| 532 | |
| 533 | // Stream represents a SELECT statement. |
| 534 | type Stream struct { |
| 535 | Comments Comments |
| 536 | SelectExpr SelectExpr |
| 537 | Table TableName |
| 538 | } |
| 539 | |
| 540 | // Format formats the node. |
| 541 | func (node *Stream) Format(buf *TrackedBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected