Yes but only for internal use reduce(OR,....), reduce(AND,....) they are not exposed to the apps.
On Aug 18, 10:46 am, Ross Peoples <[email protected]> wrote: > I noticed something else in there that might be useful, if I'm understanding > it: > > db(OR(db.auth_user.first_name=='test', > db.auth_user.last_name=='test')).select() > > I saw the AND and OR functions in there which seem to do the same thing as: > > db(db.auth_user.first_name=='test' | > db.auth_user.last_name=='test').select() > > Did I read this right?

