(self)
| 4934 | self.assert_compile(column("q").in_(t), "q IN (SELECT t.x FROM t)") |
| 4935 | |
| 4936 | def test_in_table_alias(self): |
| 4937 | t = table("t", column("x")) |
| 4938 | |
| 4939 | with expect_warnings( |
| 4940 | r"Coercing Alias object into a select\(\) for use in " |
| 4941 | r"IN\(\); please pass a select\(\) construct explicitly", |
| 4942 | ): |
| 4943 | self.assert_compile( |
| 4944 | column("q").in_(t.alias()), "q IN (SELECT t_1.x FROM t AS t_1)" |
| 4945 | ) |
| 4946 | |
| 4947 | def test_in_cte_implicit(self): |
| 4948 | t = table("t", column("x")) |
nothing calls this directly
no test coverage detected