Changes between Initial Version and Version 1 of Ticket #25171, comment 6
- Timestamp:
- Jul 24, 2015, 7:59:32 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25171, comment 6
initial v1 6 6 categories.update(name='foo') 7 7 }}} 8 9 Another thing that fails is this: 10 {{{ 11 Category.objects.all().annotate(tiles_count=Count("tiles")).filter(tiles_count__gt=0).update(is_verified=True) 12 }}} 13 Anyway the problem is due to the fact that it tries to use Category.id although it seems to be out of scope. 14 The problem seem to be with the SQLUpdateCompiler