Case represents a CASE WHEN .. THEN .. ELSE .. THEN expression.
| 250 | |
| 251 | // Case represents a CASE WHEN .. THEN .. ELSE .. THEN expression. |
| 252 | type Case struct { |
| 253 | WhenThens []WhenThen |
| 254 | Else Expr |
| 255 | ExprType Type |
| 256 | } |
| 257 | |
| 258 | // Type returns the type. |
| 259 | func (c *Case) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected