Stream represents a SELECT statement.
| 352 | |
| 353 | // Stream represents a SELECT statement. |
| 354 | type Stream struct { |
| 355 | Comments Comments |
| 356 | SelectExpr SelectExpr |
| 357 | Table TableName |
| 358 | } |
| 359 | |
| 360 | // Format formats the node. |
| 361 | func (node *Stream) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected