()
| 75 | |
| 76 | |
| 77 | def test_issue_9418() -> None: |
| 78 | and_(c1.is_(q)) |
| 79 | and_(c1.is_not(q)) |
| 80 | and_(c1.isnot(q)) |
| 81 | and_(c1.not_in(["x"])) |
| 82 | and_(c1.notin_(["x"])) |
| 83 | and_(c1.not_like("x")) |
| 84 | and_(c1.notlike("x")) |
| 85 | and_(c1.not_ilike("x")) |
| 86 | and_(c1.notilike("x")) |
| 87 | |
| 88 | |
| 89 | def test_issue_9451() -> None: |