(self, other, operator_)
| 2317 | ) |
| 2318 | |
| 2319 | def _check_operator_queryset(self, other, operator_): |
| 2320 | if self.query.combinator or other.query.combinator: |
| 2321 | raise TypeError(f"Cannot use {operator_} operator with combined queryset.") |
| 2322 | |
| 2323 | def _check_ordering_first_last_queryset_aggregation(self, method): |
| 2324 | if ( |