summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-09-22 16:03:57 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-09-22 16:03:57 -0400
commit03cb8ce548a99b97852c25f2fec26ed611afbb5c (patch)
treec8843f6b02b22b835458a039d3dcc3b099bbcbad /CHANGES
parent81c1ec33e37c23be58285d4ef607de9b670c547f (diff)
downloadsqlalchemy-03cb8ce548a99b97852c25f2fec26ed611afbb5c.tar.gz
- [bug] Extra logic has been added to the "flush"
that occurs within Session.commit(), such that the extra state added by an after_flush() or after_flush_postexec() hook is also flushed in a subsequent flush, before the "commit" completes. Subsequent calls to flush() will continue until the after_flush hooks stop adding new state. An "overflow" counter of 100 is also in place, in the event of a broken after_flush() hook adding new content each time. [ticket:2566]
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES15
1 files changed, 13 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 205e035ed..3b600d5be 100644
--- a/CHANGES
+++ b/CHANGES
@@ -612,8 +612,8 @@ underneath "0.7.xx".
needs to be modified to use column.in_(select)
explicitly. [ticket:2277]
- - [feature] updated support for the mxodbc
- driver; mxodbc 3.2.1 is recommended for full
+ - [feature] updated support for the mxodbc
+ driver; mxodbc 3.2.1 is recommended for full
compatibility.
- postgresql
@@ -743,6 +743,17 @@ are also present in 0.8.
"version" column, when using the "version" feature.
Tests courtesy Daniel Miller. [ticket:2539]
+ - [bug] Extra logic has been added to the "flush"
+ that occurs within Session.commit(), such that the
+ extra state added by an after_flush() or
+ after_flush_postexec() hook is also flushed in a
+ subsequent flush, before the "commit" completes.
+ Subsequent calls to flush() will continue until
+ the after_flush hooks stop adding new state.
+ An "overflow" counter of 100 is also in place,
+ in the event of a broken after_flush() hook
+ adding new content each time. [ticket:2566]
+
- sql
- [bug] Fixed CTE bug whereby positional
bound parameters present in the CTEs themselves