]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
formatting
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 7 Nov 2008 18:03:37 +0000 (18:03 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 7 Nov 2008 18:03:37 +0000 (18:03 +0000)
CHANGES

diff --git a/CHANGES b/CHANGES
index 27db34f583bff1b56a9182ed58edd5c79d1ec5bb..51d0e1aadd28d2a16f9b8a65f9136657cf8d02e3 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -7,12 +7,13 @@ CHANGES
 0.5.0rc3
 ========
 - features
-
+- orm
     - Added two new hooks to SessionExtension: after_bulk_delete and
       after_bulk_update. after_bulk_delete is called after a bulk delete()
       operation on a query. after_bulk_update is called after a bulk update()
       operation on a query.
 
+- sql
     - SQL compiler optimizations.  The call count for compiling a
       typical select() construct is 20% less versus 0.5.0rc2.
 
@@ -25,6 +26,7 @@ CHANGES
       The compiler uses the value of dialect.max_identifier_length
       as a default. [ticket:1211]
 
+- ext
     - Added a new extension sqlalchemy.ext.serializer.  Provides
       Serializer/Deserializer "classes" which mirror Pickle/Unpickle,
       as well as dumps() and loads().  This serializer implements
@@ -37,9 +39,14 @@ CHANGES
       objects and full Query objects, such that all mapper/engine/session
       dependencies can be restored at unpickle time.
 
+- oracle
     - Wrote a docstring for Oracle dialect.  Apparently that Ohloh
       "few source code comments" label is starting to sting :).
 
+    - Removed FIRST_ROWS() optimize flag when using LIMIT/OFFSET,
+      can be reenabled with optimize_limits=True create_engine()
+      flag.  [ticket:536]
+
 - bugfixes and behavioral changes
 - orm
     - "not equals" comparisons of simple many-to-one relation to an
@@ -127,10 +134,6 @@ CHANGES
       that aren't pure functions.
 
 - oracle
-    - Removed FIRST_ROWS() optimize flag when using LIMIT/OFFSET,
-      can be reenabled with optimize_limits=True create_engine()
-      flag.  [ticket:536]
-
     - Setting the auto_convert_lobs to False on create_engine() will
       also instruct the OracleBinary type to return the cx_oracle
       LOB object unchanged.
@@ -143,8 +146,6 @@ CHANGES
     - No longer expects include_columns in table reflection to be
       lower case.
 
-- ext
-      
 - misc
     - util.flatten_iterator() func doesn't interpret strings with
       __iter__() methods as iterators, such as in pypy [ticket:1077].