Select represents a SelectStatement with an ORDER and/or LIMIT.
| 41 | |
| 42 | // Select represents a SelectStatement with an ORDER and/or LIMIT. |
| 43 | type Select struct { |
| 44 | With *With |
| 45 | Select SelectStatement |
| 46 | OrderBy OrderBy |
| 47 | Limit *Limit |
| 48 | Locking LockingClause |
| 49 | } |
| 50 | |
| 51 | // Format implements the NodeFormatter interface. |
| 52 | func (node *Select) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected