(self)
| 3867 | assert not q._compile_state()._has_mapper_entities |
| 3868 | |
| 3869 | def test_cols_set_entities(self): |
| 3870 | User = self.classes.User |
| 3871 | s = fixture_session() |
| 3872 | |
| 3873 | q = s.query(User.id) |
| 3874 | |
| 3875 | q._set_entities(User) |
| 3876 | assert q._compile_state()._has_mapper_entities |
| 3877 | |
| 3878 | def test_entity_set_entities(self): |
| 3879 | User = self.classes.User |
nothing calls this directly
no test coverage detected