summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-04-07 18:00:42 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-04-07 18:00:42 -0400
commita7ada78d87aeb7383455b3935457950f1070d4b2 (patch)
tree1ef5720cf920459d4120bab10c868002fa248e0b /CHANGES
parent456d364626bdbff1d3ded8499242f819b937e7f6 (diff)
downloadalembic-a7ada78d87aeb7383455b3935457950f1070d4b2.tar.gz
- [bug] bulk_insert() fixes:rel_0_3_1
1. bulk_insert() operation was not working most likely since the 0.2 series when used with an engine. #41 2. Repaired bulk_insert() to complete when used against a lower-case-t table and executing with only one set of parameters, working around SQLAlchemy bug #2461 in this regard. 3. bulk_insert() uses "inline=True" so that phrases like RETURNING and such don't get invoked for single-row bulk inserts. 4. bulk_insert() will check that you're passing a list of dictionaries in, raises TypeError if not detected.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES18
1 files changed, 18 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 001bd6a..1e3843a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,21 @@
+0.3.1
+=====
+- [bug] bulk_insert() fixes:
+
+ 1. bulk_insert() operation was
+ not working most likely since the 0.2 series
+ when used with an engine. #41
+ 2. Repaired bulk_insert() to complete when
+ used against a lower-case-t table and executing
+ with only one set of parameters, working
+ around SQLAlchemy bug #2461 in this regard.
+ 3. bulk_insert() uses "inline=True" so that phrases
+ like RETURNING and such don't get invoked for
+ single-row bulk inserts.
+ 4. bulk_insert() will check that you're passing
+ a list of dictionaries in, raises TypeError
+ if not detected.
+
0.3.0
=====
- [general] The focus of 0.3 is to clean up