Changes between Initial Version and Version 23 of Ticket #14645


Ignore:
Timestamp:
Dec 19, 2019, 9:40:54 AM (4 years ago)
Author:
Asif Saifuddin Auvi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14645

    • Property Triage Stage UnreviewedAccepted
    • Property Cc rma Chris PhiR_42 benkraft bugs@… Can Sarıgöl added
    • Property Version 1.1master
    • Property SeverityNormal
    • Property TypeBug
    • Property Easy pickings unset
    • Property UI/UX unset
    • Property Has patch set
  • Ticket #14645 – Description

    initial v23  
    1 According to [http://docs.djangoproject.com/en/1.2/topics/db/queries/#spanning-multi-valued-relationships]: "all the conditions in a single exclude() statement apply to a single instance (if those conditions are talking about the same multi-valued relation)." This works correctly for filter() but for exclude() it is operating the same as if it was 2 separate exclude() calls. Here's an example set of models:
     1According to [http://docs.djangoproject.com/en/dev/topics/db/queries/#spanning-multi-valued-relationships]: "all the conditions in a single exclude() statement apply to a single instance (if those conditions are talking about the same multi-valued relation)." This works correctly for filter() but for exclude() it is operating the same as if it was 2 separate exclude() calls. Here's an example set of models:
    22
    33{{{
Back to Top