(self, other)
| 103 | return combined |
| 104 | |
| 105 | def __or__(self, other): |
| 106 | combined = self._clone() |
| 107 | if isinstance(other, EmptySearchQuerySet): |
| 108 | return combined |
| 109 | combined.query.combine(other.query, SQ.OR) |
| 110 | return combined |
| 111 | |
| 112 | def _cache_is_full(self): |
| 113 | if not self.query.has_run(): |