Changes between Initial Version and Version 1 of Ticket #24525


Ignore:
Timestamp:
Mar 23, 2015, 2:31:12 PM (9 years ago)
Author:
Ram Rachum
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24525 – Description

    initial v1  
    33I'm getting an assertion error on the first line of `Query.change_aliases`:
    44
     5{{{
    56        assert set(change_map.keys()).intersection(set(change_map.values())) == set()
     7}}}
    68
    79Problem is, I can't post more data, because the queryset has confidential client information :(
     
    911I can post the value of `change_map`, with identifying details renamed:
    1012
     13{{{
    1114    {'T5': 'T10',
    1215     'T6': 'T11',
     
    1619     'my_app_stack__writers': 'T9',
    1720     'my_app_user': 'T8'}
     21}}}
    1822
    1923This happened when doing `&` on two querysets, one of which having `.distinct()` applied on it, among other things.
Back to Top