diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-01 13:37:35 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-01 13:37:35 -0400 |
| commit | 82b6e074920cb972a569db4d2d395c8949868a31 (patch) | |
| tree | d18df886d56a5c9873011bd3b4c84f057ee6bf8a /doc | |
| parent | 7dff6f6d490528f5e88493cdf4b14d3136b40d3c (diff) | |
| download | sqlalchemy-82b6e074920cb972a569db4d2d395c8949868a31.tar.gz | |
- Fixed bug in unit of work whereby a joined-inheritance
subclass could insert the row for the "sub" table
before the parent table, if the two tables had no
ForeignKey constraints set up between them.
Also in 0.7.11. [ticket:2689]
- fix a glitch in the assertsql.CompiledSQL fixture regarding
when a multiparam compiledSQL is used within an AllOf
- add a new utility function randomize_unitofwork() which
does the function of --reversetop
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_07.rst | 9 | ||||
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 10 |
2 files changed, 19 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_07.rst b/doc/build/changelog/changelog_07.rst index a42ef3bb6..df63654a4 100644 --- a/doc/build/changelog/changelog_07.rst +++ b/doc/build/changelog/changelog_07.rst @@ -7,6 +7,15 @@ :version: 0.7.11 .. change:: + :tags: bug, orm + :tickets: 2689 + + Fixed bug in unit of work whereby a joined-inheritance + subclass could insert the row for the "sub" table + before the parent table, if the two tables had no + ForeignKey constraints set up between them. + + .. change:: :tags: feature, postgresql :tickets: 2676 diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 634ea4a95..4ef11590f 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -7,6 +7,16 @@ :version: 0.8.1 .. change:: + :tags: bug, orm + :tickets: 2689 + + Fixed bug in unit of work whereby a joined-inheritance + subclass could insert the row for the "sub" table + before the parent table, if the two tables had no + ForeignKey constraints set up between them. + Also in 0.7.11. + + .. change:: :tags: bug, mssql :pullreq: 47 |
