]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug whereby if a mapped class
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jul 2011 20:44:37 +0000 (16:44 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jul 2011 20:44:37 +0000 (16:44 -0400)
commit660e82ec505a05effc9faa2689bc0ddf9dde3c7d
treee2921d3164c611fe7030ce8b0d0da64fa30d5eb7
parent15cd4235b6e5bbcfebe14ba64f56b780ae2346d6
- Fixed bug whereby if a mapped class
redefined __hash__() or __eq__() to something
non-standard, which is a supported use case
as SQLA should never consult these,
the methods would be consulted if the class
was part of a "composite" (i.e. non-single-entity)
result set.  [ticket:2215]
Also in 0.6.9.
CHANGES
lib/sqlalchemy/orm/query.py
test/orm/test_mapper.py