SelectClause represents a SELECT statement.
| 77 | |
| 78 | // SelectClause represents a SELECT statement. |
| 79 | type SelectClause struct { |
| 80 | Distinct bool |
| 81 | DistinctOn DistinctOn |
| 82 | Exprs SelectExprs |
| 83 | From From |
| 84 | Where *Where |
| 85 | GroupBy GroupBy |
| 86 | Having *Where |
| 87 | Window Window |
| 88 | TableSelect bool |
| 89 | } |
| 90 | |
| 91 | // Format implements the NodeFormatter interface. |
| 92 | func (node *SelectClause) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected