On Monday 12 May 2008 17:01:23 Michael Bayer wrote: > what does > q.filter(x==5).filter_or(x==9).filter(y=17).filter_or(x==27) do ? > (x=5 or x=9) and (y=17 or x=27) ? ((x=5 or x=9) and y=17) or x=27 > ? etc ..
what pythons/C x==5 or x==9 and y==17 or x==27 does? i know... the parenthesises. cant we invent something? it's not for tomorrow... the resetjoinpoint is one possibility, and some left_bracket()/right_bracket() is another. another way is to be able to do boolean arithmetics over whole queries, maybe thats even better? query.or_( query.filter(this).join(that), query.filter(that).join(this) ) > On May 12, 2008, at 8:06 AM, [EMAIL PROTECTED] wrote: > > one thing that might go in a wishlist - query.filter_or() > > http://groups.google.com/group/sqlalchemy/browse_thread/thread/f6 > >798eb5ef2c0bfe should i make it into a ticket? > > > >> as you might have noticed we've merged 0.5 into the trunk. > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
