~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Jamu Kakar
  • Date: 2009-10-23 19:19:16 UTC
  • mfrom: (329.3.1 mysql-reserved-words)
  • Revision ID: jkakar@kakar.ca-20091023191916-6jfp30ed3l2bl1se
Merged mysql-reserved-words [r=gabriel,jamesh] [f=433833]

MySQL reserved words that weren't treated properly before are
handled correctly now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
0.15 (2009-XX-XX)
 
1
0.16 (2009-XX-XX)
 
2
=================
 
3
 
 
4
Improvements
 
5
------------
 
6
 - The set expression constructor will now flatten its first argument
 
7
   if it is of the same type.  The resulting expression tree uses less
 
8
   stack when compiling so reduces the chance of hitting Python's
 
9
   recursion limit (bug #242813).
 
10
 
 
11
Bug fixes
 
12
---------
 
13
 - Remove a leak when mutable variables (ListVariable or PickleVariable
 
14
   instances) are collected before store.flush, leaving hooks behind them.
 
15
 - The ResultSet min, max and sum methods now work correctly when the
 
16
   result set is empty and the column has allow_none=False set.
 
17
   Previously this resulted in a NoneError (bug #457801).
 
18
 - MySQL reserved words are handled properly (bug #433833).
 
19
 
 
20
 
 
21
0.15 (2009-08-07)
2
22
=================
3
23
 
4
24
Improvements