Distinct represents a DISTINCT expression.
| 274 | |
| 275 | // Distinct represents a DISTINCT expression. |
| 276 | type Distinct struct { |
| 277 | // Identifier following DISTINCT |
| 278 | Val string |
| 279 | } |
| 280 | |
| 281 | // Type returns the type. |
| 282 | func (d *Distinct) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected