Changes between Initial Version and Version 1 of Ticket #19263, comment 4
- Timestamp:
- Feb 23, 2013, 3:29:35 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19263, comment 4
initial v1 2 2 3 3 This query failed: 4 {{{#!python 4 5 Book.objects.filter(author__in=Author.objects.empty()[0:0]) 6 }}} 5 7 while this succeded: 8 {{{#!python 6 9 Book.objects.filter(author__in=Author.objects.empty()) 10 }}} 7 11 8 12 Instead of later returning empty sql string, a QuerySet with equal indices is now immediately converted to QuerySet.none().