(self)
| 7136 | |
| 7137 | @testing.requires.boolean_col_expressions |
| 7138 | def test_sql_expr_exists_from_entity(self): |
| 7139 | User = self.classes.User |
| 7140 | session = fixture_session() |
| 7141 | with self._assert_bind_args(session, expect_mapped_bind=True): |
| 7142 | subq = session.query(User.id).exists() |
| 7143 | session.query(subq).all() |
| 7144 | |
| 7145 | def test_sql_expr_cte_from_entity(self): |
| 7146 | User = self.classes.User |
nothing calls this directly
no test coverage detected