(self)
| 4868 | __dialect__ = "default" |
| 4869 | |
| 4870 | def test_in_select(self): |
| 4871 | t = table("t", column("x")) |
| 4872 | |
| 4873 | stmt = select(t.c.x) |
| 4874 | |
| 4875 | self.assert_compile(column("q").in_(stmt), "q IN (SELECT t.x FROM t)") |
| 4876 | |
| 4877 | def test_in_subquery_warning(self): |
| 4878 | t = table("t", column("x")) |
nothing calls this directly
no test coverage detected