diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-06-30 20:25:04 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-06-30 20:25:04 -0400 |
| commit | 2d8d1dcf60e023275b8dcfea015ec16cad69d266 (patch) | |
| tree | 3a53a49ffaf72a955af4c1005888b76c3f9f6c8b /doc | |
| parent | 4b6d6d5f8024e2192c4383a0c4a3dd459900ff1a (diff) | |
| download | sqlalchemy-2d8d1dcf60e023275b8dcfea015ec16cad69d266.tar.gz | |
- 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
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_09.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index 56d43a9e6..fa83c4b34 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -16,6 +16,16 @@ .. change:: :tags: bug, orm + :tickets: 3106 + :versions: 1.0.0 + + 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. + + .. change:: + :tags: bug, orm :tickets: 3099 Fixed bug involving dynamic attributes, that was again a regression |
