Mercurial > p > roundup > code
diff roundup/backends/rdbms_common.py @ 3460:c75dd71a7963 maint-0.8
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 13 Jan 2006 01:29:48 +0000 |
| parents | 54f98b078e44 |
| children |
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py Sat Jan 07 10:13:44 2006 +0000 +++ b/roundup/backends/rdbms_common.py Fri Jan 13 01:29:48 2006 +0000 @@ -1,4 +1,4 @@ -# $Id: rdbms_common.py,v 1.142.2.11 2005-07-18 02:30:00 richard Exp $ +# $Id: rdbms_common.py,v 1.142.2.12 2006-01-13 01:29:46 richard Exp $ ''' Relational database (SQL) backend common code. Basics: @@ -2039,9 +2039,11 @@ "search_matches" is {nodeid: marker} or None - The filter must match all properties specificed - but if the - property value to match is a list, any one of the values in the - list may match for that property to match. + The filter must match all properties specificed. If the property + value to match is a list: + + 1. String properties must match all elements in the list, and + 2. Other properties must match any of the elements in the list. ''' # we can't match anything if search_matches is empty if search_matches == {}:
