or returns the query q OR r, possibly reusing q's and r's storage.
(r *Query)
| 44 | |
| 45 | // or returns the query q OR r, possibly reusing q's and r's storage. |
| 46 | func (q *Query) or(r *Query) *Query { |
| 47 | return q.andOr(r, QOr) |
| 48 | } |
| 49 | |
| 50 | // andOr returns the query q AND r or q OR r, possibly reusing q's and r's storage. |
| 51 | // It works hard to avoid creating unnecessarily complicated structures. |
no test coverage detected