~free.ekanayaka/storm/any-expr

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: James Henstridge
  • Date: 2009-11-02 12:30:44 UTC
  • mfrom: (329.4.5 storm.bug-387840)
  • Revision ID: james@jamesh.id.au-20091102123044-t5do87h5jd52i09i
Add startswith(), endswith() and contains_string() methods to Comparable.

[r=jkakar,jdo] [f=387840]

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
   if it is of the same type.  The resulting expression tree uses less
8
8
   stack when compiling so reduces the chance of hitting Python's
9
9
   recursion limit (bug #242813).
 
10
 - Add startswith(), endswith() and contains_string() methods to
 
11
   Comparable.  These methods perform prefix, suffix and substring
 
12
   checks respectively using the LIKE operator, taking care of escaping
 
13
   for you (bug #387840).
10
14
 
11
15
Bug fixes
12
16
---------