Hi,

I've been struggling with union-ing querysets. Here's an example:

>>> qs1=User.objects.filter(........)
>>> qs1=User.objects.filter(........)
>>> qs1
[<User: john>]
>>> qs2
[]
>>> qs1 | qs2
[]
>>> qs1 or qs2
[<User: john>]

I thought that "|" was equivalent to a "or", as mentioned in the doc:
http://www.djangoproject.com/documentation/db-api/#complex-lookups-with-q-objects

I'm fairly new to Django, but this look like a bug to me. Is that so?

Thanks!

Julien
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to