Mercurial > p > roundup > code
diff roundup/backends/rdbms_common.py @ 3239:440f0a6a2e3c
merge from maint-0-8
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 03 Mar 2005 22:16:32 +0000 |
| parents | 1fd11a9803bb |
| children | a615cc230160 |
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py Thu Mar 03 10:00:40 2005 +0000 +++ b/roundup/backends/rdbms_common.py Thu Mar 03 22:16:32 2005 +0000 @@ -1,4 +1,4 @@ -# $Id: rdbms_common.py,v 1.150 2005-03-02 14:03:44 a1s Exp $ +# $Id: rdbms_common.py,v 1.151 2005-03-03 22:16:32 richard Exp $ ''' Relational database (SQL) backend common code. Basics: @@ -1896,11 +1896,10 @@ KeyError is raised. That property must be a Link or Multilink property, or a TypeError is raised. - Any node in this class whose 'propname' property links to any of the - nodeids will be returned. Used by the full text indexing, which knows - that "foo" occurs in msg1, msg3 and file7, so we have hits on these - issues: - + Any node in this class whose 'propname' property links to any of + the nodeids will be returned. Examples:: + + db.issue.find(messages='1') db.issue.find(messages={'1':1,'3':1}, files={'7':1}) ''' # shortcut
