Limit represents a LIMIT clause.
| 694 | |
| 695 | // Limit represents a LIMIT clause. |
| 696 | type Limit struct { |
| 697 | Offset, Count Expr |
| 698 | LimitAll bool |
| 699 | } |
| 700 | |
| 701 | // Format implements the NodeFormatter interface. |
| 702 | func (node *Limit) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected