Changes between Initial Version and Version 1 of Ticket #11329
- Timestamp:
- Jun 16, 2009, 6:12:09 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11329 – Description
initial v1 1 1 Extending an example on extra 'select' from http://docs.djangoproject.com/en/1.0/ref/models/querysets/ with an extra 'with' and calling get_count: 2 2 {{{ 3 3 Blog.objects.extra( 4 4 select={ … … 7 7 where=['entry_count=0'] 8 8 ).query.get_count() 9 9 }}} 10 10 results in OperationalError: no such column: entry_count. 11 11