Select represents a SelectStatement with an ORDER and/or LIMIT.
| 55 | |
| 56 | // Select represents a SelectStatement with an ORDER and/or LIMIT. |
| 57 | type Select struct { |
| 58 | With *With |
| 59 | Select SelectStatement |
| 60 | OrderBy OrderBy |
| 61 | Limit *Limit |
| 62 | Locking LockingClause |
| 63 | } |
| 64 | |
| 65 | // Format implements the NodeFormatter interface. |
| 66 | func (node *Select) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected