(self)
| 2989 | assert not literal_column("x = y")._is_implicitly_boolean |
| 2990 | |
| 2991 | def test_scalar_select(self): |
| 2992 | t = self.table1 |
| 2993 | expr = select(t.c.myid).where(t.c.myid > 5).scalar_subquery() |
| 2994 | self.assert_compile( |
| 2995 | not_(expr), |
| 2996 | "NOT (SELECT mytable.myid FROM mytable " |
| 2997 | "WHERE mytable.myid > :myid_1)", |
| 2998 | params={"myid_1": 5}, |
| 2999 | ) |
| 3000 | |
| 3001 | def test_scalar_values(self): |
| 3002 | t = self.table1 |
nothing calls this directly
no test coverage detected