(self)
| 1400 | ) |
| 1401 | |
| 1402 | def test_seven_b(self): |
| 1403 | t1 = table("t1", column("a")) |
| 1404 | t2 = table("t2", column("b")) |
| 1405 | self.assert_compile( |
| 1406 | join(t1, t2, onclause=false()), |
| 1407 | "t1 JOIN t2 ON 0 = 1", |
| 1408 | dialect=self._dialect(False), |
| 1409 | ) |
| 1410 | |
| 1411 | def test_seven_c(self): |
| 1412 | t1 = table("t1", column("a")) |