]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- repair the _enable_single_crit method, it was named the same
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 1 Jul 2014 00:25:04 +0000 (20:25 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 1 Jul 2014 00:27:00 +0000 (20:27 -0400)
commit3ed5449ebb6c7b00e254c0a2f8fbaadd91349239
tree589a972eea41b615c89129b787a05f8b8f396dcc
parent9b9a21adb80fb20525925a10c23381fe6f3983ba
- repair the _enable_single_crit method, it was named the same
as the attribute and probably just replaced itself, so that is
now _set_enable_single_crit
- as a side effect of the main issue fixed here, correct the case in
adjust_for_single_inheritance where the same mapper appears more
than once in mapper_adapter_map; run through a set() for uniqueness.
- Fixed bug in subquery eager loading in conjunction with
:func:`.with_polymorphic`, the targeting of entities and columns
in the subquery load has been made more accurate with respect
to this type of entity and others. Fixes #3106
doc/build/changelog/changelog_09.rst
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/strategies.py
test/orm/test_subquery_relations.py