Changes between Initial Version and Version 23 of Ticket #14645
- Timestamp:
- Dec 19, 2019, 9:40:54 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14645
- Property Triage Stage Unreviewed → Accepted
- Property Cc added
- Property Version 1.1 → master
- Property Severity → Normal
- Property Type → Bug
- 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:1 According 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: 2 2 3 3 {{{