]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- changelog update, added 0.7's version of [ticket:2561] and also
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 10 Oct 2012 17:26:00 +0000 (13:26 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 10 Oct 2012 17:26:00 +0000 (13:26 -0400)
r74618cabb1cb referred to the wrong ticket.

CHANGES

diff --git a/CHANGES b/CHANGES
index c36cdd7885370238204e82e471b406be68be465e..ba691f4289cc5166f8d823903d81d266e9283553 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -787,10 +787,11 @@ underneath "0.7.xx".
 
   - [feature] The types of columns excluded from the
     setinputsizes() set can be customized by sending
-    a list of string DBAPI type names to exclude.
+    a list of string DBAPI type names to exclude,
+    using the exclude_setinputsizes dialect parameter.
     This list was previously fixed.  The list also
     now defaults to STRING, UNICODE, removing
-    CLOB, NCLOB from the list.  [ticket:2469]
+    CLOB, NCLOB from the list.  [ticket:2561]
 
   - [bug] The CreateIndex construct in Oracle
     will now schema-qualify the name of the index
@@ -824,6 +825,15 @@ are also present in 0.8.
     or by primary key switch of another instance.
     [ticket:2583]
 
+- oracle
+  - [bug] changed the list of cx_oracle types that are
+    excluded from the setinputsizes() step to only include
+    STRING and UNICODE; CLOB and NCLOB are removed.  This
+    is to work around cx_oracle behavior which is broken
+    for the executemany() call.  In 0.8, this same change
+    is applied however it is also configurable via the
+    exclude_setinputsizes argument. [ticket:2561]
+
 - mysql
   - [feature] Added "raise_on_warnings" flag to OurSQL
     dialect.  [ticket:2523]