(self)
| 1543 | ) |
| 1544 | |
| 1545 | def test_seven_a(self): |
| 1546 | t1 = table("t1", column("a")) |
| 1547 | t2 = table("t2", column("b")) |
| 1548 | self.assert_compile( |
| 1549 | join(t1, t2, onclause=true()), |
| 1550 | "t1 JOIN t2 ON 1 = 1", |
| 1551 | dialect=self._dialect(False), |
| 1552 | ) |
| 1553 | |
| 1554 | def test_seven_b(self): |
| 1555 | t1 = table("t1", column("a")) |