(self, operation_name)
| 2310 | ) |
| 2311 | |
| 2312 | def _not_support_combined_queries(self, operation_name): |
| 2313 | if self.query.combinator: |
| 2314 | raise NotSupportedError( |
| 2315 | "Calling QuerySet.%s() after %s() is not supported." |
| 2316 | % (operation_name, self.query.combinator) |
| 2317 | ) |
| 2318 | |
| 2319 | def _check_operator_queryset(self, other, operator_): |
| 2320 | if self.query.combinator or other.query.combinator: |
no test coverage detected