Changes between Initial Version and Version 1 of Ticket #10692


Ignore:
Timestamp:
Apr 1, 2009, 11:01:52 AM (15 years ago)
Author:
Gary Wilson
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10692

    • Property Owner changed from nobody to Gary Wilson
    • Property Status newassigned
  • Ticket #10692 – Description

    initial v1  
    11Create simple model:
    22
     3{{{
    34class Test(models.Model):
    45    area = models.DecimalField(default=0, max_digits=7, decimal_places=2)
     6}}}
    57
    68run:
     9{{{
    710Test.objects.filter(area__lte=1000000000)
     11}}}
    812
    9 it will raise InvalidOperation: Rescale > prec in decimal.py
     13it will raise `InvalidOperation: Rescale > prec` in decimal.py
    1014
Back to Top