(self)
| 3859 | assert q._compile_state()._has_mapper_entities |
| 3860 | |
| 3861 | def test_cols(self): |
| 3862 | User = self.classes.User |
| 3863 | s = fixture_session() |
| 3864 | |
| 3865 | q = s.query(User.id) |
| 3866 | |
| 3867 | assert not q._compile_state()._has_mapper_entities |
| 3868 | |
| 3869 | def test_cols_set_entities(self): |
| 3870 | User = self.classes.User |
nothing calls this directly
no test coverage detected