A query that never matches.
| 656 | |
| 657 | |
| 658 | class FalseQuery(Query): |
| 659 | """A query that never matches.""" |
| 660 | |
| 661 | def clause(self) -> tuple[str, Sequence[SQLiteType]]: |
| 662 | return "0", () |
| 663 | |
| 664 | def match(self, obj: Model) -> bool: |
| 665 | return False |
| 666 | |
| 667 | |
| 668 | # Time/date queries. |