(self)
| 4533 | __dialect__ = "default" |
| 4534 | |
| 4535 | def test_in_select(self): |
| 4536 | t = table("t", column("x")) |
| 4537 | |
| 4538 | stmt = select(t.c.x) |
| 4539 | |
| 4540 | self.assert_compile(column("q").in_(stmt), "q IN (SELECT t.x FROM t)") |
| 4541 | |
| 4542 | def test_in_subquery_warning(self): |
| 4543 | t = table("t", column("x")) |
nothing calls this directly
no test coverage detected