Union represents a UNION statement.
| 278 | |
| 279 | // Union represents a UNION statement. |
| 280 | type Union struct { |
| 281 | Type string |
| 282 | Left, Right SelectStatement |
| 283 | OrderBy OrderBy |
| 284 | Limit *Limit |
| 285 | Lock string |
| 286 | With *With |
| 287 | } |
| 288 | |
| 289 | // Union.Type |
| 290 | const ( |
nothing calls this directly
no outgoing calls
no test coverage detected