Changes between Initial Version and Version 1 of Ticket #33482


Ignore:
Timestamp:
Feb 1, 2022, 8:37:39 AM (2 years ago)
Author:
Tobias Bengfort
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33482 – Description

    initial v1  
    1 ```
    2 >>> qs = MyModel.objects.filter(~models.Exists(MyModel.objects.none()), name='test')
    3 >>> qs
    4 <QuerySet []>
    5 >>> print(qs.query)
    6 EmptyResultSet
    7 ```
     1    >>> qs = MyModel.objects.filter(~models.Exists(MyModel.objects.none()), name='test')
     2    >>> qs
     3    <QuerySet []>
     4    >>> print(qs.query)
     5    EmptyResultSet
    86
    97With django-debug-toolbar I can still see the query, but there WHERE block is missing completely.
Back to Top