(self)
| 222 | eq_(list(q2.with_entities(ua_2.id, ua_2.name)), [(9, "fred")]) |
| 223 | |
| 224 | def test_annotated_one(self): |
| 225 | j = join(users, addresses)._annotate({"foo": "bar"}) |
| 226 | query = select(addresses).select_from(j) |
| 227 | |
| 228 | str(query) |
| 229 | for prot in pickle_protocols(): |
| 230 | pickled_failing = serializer.dumps(j, prot) |
| 231 | serializer.loads(pickled_failing, users.metadata, None) |
| 232 | |
| 233 | def test_orm_join(self): |
| 234 | from sqlalchemy.orm import join |
nothing calls this directly
no test coverage detected