(self)
| 1561 | ) |
| 1562 | |
| 1563 | def test_seven_c(self): |
| 1564 | t1 = table("t1", column("a")) |
| 1565 | t2 = table("t2", column("b")) |
| 1566 | self.assert_compile( |
| 1567 | join(t1, t2, onclause=true()), |
| 1568 | "t1 JOIN t2 ON true", |
| 1569 | dialect=self._dialect(True), |
| 1570 | ) |
| 1571 | |
| 1572 | def test_seven_d(self): |
| 1573 | t1 = table("t1", column("a")) |