Similar to selectStatementImpl, but less complete
| 124 | |
| 125 | // Similar to selectStatementImpl, but less complete |
| 126 | type unionStatementImpl struct { |
| 127 | selects []SelectStatement |
| 128 | where BoolExpression |
| 129 | group *listClause |
| 130 | order *listClause |
| 131 | limit, offset int64 |
| 132 | // True if results of the union should be deduped. |
| 133 | unique bool |
| 134 | } |
| 135 | |
| 136 | func (us *unionStatementImpl) Where(expression BoolExpression) UnionStatement { |
| 137 | us.where = expression |
nothing calls this directly
no outgoing calls
no test coverage detected