Changes between Initial Version and Version 1 of Ticket #25171, comment 6


Ignore:
Timestamp:
Jul 24, 2015, 7:59:32 AM (9 years ago)
Author:
zauddelig

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25171, comment 6

    initial v1  
    66categories.update(name='foo')
    77}}}
     8
     9Another thing that fails is this:
     10{{{
     11Category.objects.all().annotate(tiles_count=Count("tiles")).filter(tiles_count__gt=0).update(is_verified=True)
     12}}}
     13Anyway the problem is due to the fact that it tries to use Category.id although it seems to be out of scope.
     14The problem seem to be with the SQLUpdateCompiler
Back to Top