(self)
| 1552 | ) |
| 1553 | |
| 1554 | def test_seven_b(self): |
| 1555 | t1 = table("t1", column("a")) |
| 1556 | t2 = table("t2", column("b")) |
| 1557 | self.assert_compile( |
| 1558 | join(t1, t2, onclause=false()), |
| 1559 | "t1 JOIN t2 ON 0 = 1", |
| 1560 | dialect=self._dialect(False), |
| 1561 | ) |
| 1562 | |
| 1563 | def test_seven_c(self): |
| 1564 | t1 = table("t1", column("a")) |