diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-11 20:04:57 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-11 20:04:57 -0400 |
| commit | ce5cff151ad5f4d807c2655f7e44c3245552c0b6 (patch) | |
| tree | 330f584b70ffbeeda39e30d6fdbe566f94d4f95d /doc | |
| parent | b19f3db87085b96e843169252d5c7e2c2d8c428b (diff) | |
| download | sqlalchemy-ce5cff151ad5f4d807c2655f7e44c3245552c0b6.tar.gz | |
Fixed bug whereby ORM would run the wrong kind of
query when refreshing an inheritance-mapped class
where the superclass was mapped to a non-Table
object, like a custom join() or a select(),
running a query that assumed a hierarchy that's
mapped to individual Table-per-class.
[ticket:2697]
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 13c044351..60d61cb8d 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -8,6 +8,17 @@ .. change:: :tags: bug, orm + :tickets: 2697 + + Fixed bug whereby ORM would run the wrong kind of + query when refreshing an inheritance-mapped class + where the superclass was mapped to a non-Table + object, like a custom join() or a select(), + running a query that assumed a hierarchy that's + mapped to individual Table-per-class. + + .. change:: + :tags: bug, orm Fixed `__repr__()` on mapper property constructs to work before the object is initialized, so |
