#31581: Queryset bug when using Q()? -- doubles up the counts by doing an extra
join.
-------------------------------------+-------------------------------------
     Reporter:  Javier Buzzi         |                    Owner:  nobody
         Type:  Bug                  |                   Status:  closed
    Component:  Database layer       |                  Version:  3.0
  (models, ORM)                      |
     Severity:  Normal               |               Resolution:  invalid
     Keywords:                       |             Triage Stage:
                                     |  Unreviewed
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------
Changes (by felixxm):

 * status:  new => closed
 * resolution:   => invalid


Comment:

 These queryset are different so you cannot expect the same results:
 - `Q(condition1) | Q(condition2)` means  "condition1 **OR** condition2",
 - `.filter(condition1, condition2)` means  "condition1 **AND**
 condition2".

-- 
Ticket URL: <https://code.djangoproject.com/ticket/31581#comment:4>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/069.5807c4b54b5b49e5ffb61d9d191edbbc%40djangoproject.com.

Reply via email to