(self)
| 1409 | ) |
| 1410 | |
| 1411 | def test_seven_c(self): |
| 1412 | t1 = table("t1", column("a")) |
| 1413 | t2 = table("t2", column("b")) |
| 1414 | self.assert_compile( |
| 1415 | join(t1, t2, onclause=true()), |
| 1416 | "t1 JOIN t2 ON true", |
| 1417 | dialect=self._dialect(True), |
| 1418 | ) |
| 1419 | |
| 1420 | def test_seven_d(self): |
| 1421 | t1 = table("t1", column("a")) |