The lead example for the with_parent() function
docstring was backwards, based on the standard User/Address
mapping used in the documentation.
Fixes: #7540
Change-Id: Iaff7dc6fdd0c323509231ae5f3122ed76a420915
(cherry picked from commit
21ee595ba9ef3e7abc8982fac7bf488c904cf9c9)
E.g.::
- stmt = select(Address).where(with_parent(some_user, Address.user))
+ stmt = select(Address).where(with_parent(some_user, User.addresses))
The SQL rendered is the same as that rendered when a lazy loader