(self)
| 1391 | ) |
| 1392 | |
| 1393 | def test_seven_a(self): |
| 1394 | t1 = table("t1", column("a")) |
| 1395 | t2 = table("t2", column("b")) |
| 1396 | self.assert_compile( |
| 1397 | join(t1, t2, onclause=true()), |
| 1398 | "t1 JOIN t2 ON 1 = 1", |
| 1399 | dialect=self._dialect(False), |
| 1400 | ) |
| 1401 | |
| 1402 | def test_seven_b(self): |
| 1403 | t1 = table("t1", column("a")) |