(self, using)
| 681 | return q |
| 682 | |
| 683 | def has_results(self, using): |
| 684 | q = self.exists() |
| 685 | compiler = q.get_compiler(using=using) |
| 686 | return compiler.has_results() |
| 687 | |
| 688 | def explain(self, using, format=None, **options): |
| 689 | q = self.clone() |
no test coverage detected