Changes between Initial Version and Version 1 of Ticket #24525
- Timestamp:
- Mar 23, 2015, 2:31:12 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24525 – Description
initial v1 3 3 I'm getting an assertion error on the first line of `Query.change_aliases`: 4 4 5 {{{ 5 6 assert set(change_map.keys()).intersection(set(change_map.values())) == set() 7 }}} 6 8 7 9 Problem is, I can't post more data, because the queryset has confidential client information :( … … 9 11 I can post the value of `change_map`, with identifying details renamed: 10 12 13 {{{ 11 14 {'T5': 'T10', 12 15 'T6': 'T11', … … 16 19 'my_app_stack__writers': 'T9', 17 20 'my_app_user': 'T8'} 21 }}} 18 22 19 23 This happened when doing `&` on two querysets, one of which having `.distinct()` applied on it, among other things.