ParenSelect represents a parenthesized SELECT/UNION/VALUES statement.
| 65 | |
| 66 | // ParenSelect represents a parenthesized SELECT/UNION/VALUES statement. |
| 67 | type ParenSelect struct { |
| 68 | Select *Select |
| 69 | } |
| 70 | |
| 71 | // Format implements the NodeFormatter interface. |
| 72 | func (node *ParenSelect) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected