It looks like iteration_result.value is specified as a FLOAT field in our
database. I'd prefer to replace type with dbmodels.FloatField

-James

On Mon, Mar 22, 2010 at 2:42 AM, Feng Yang <[email protected]> wrote:

> decimal_places must less-than-or-equal-to max_digits in
> 'numeric(max_digits, decimal_places)' in mysql syntax.
> max_digits is 12, so decimal_places must <= 12. Set
> decimal_places to 2.
>
> Signed-off-by: Feng Yang <[email protected]>
> ---
>  frontend/tko/models.py |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/frontend/tko/models.py b/frontend/tko/models.py
> index 7348b07..abf12b2 100644
> --- a/frontend/tko/models.py
> +++ b/frontend/tko/models.py
> @@ -231,7 +231,7 @@ class IterationResult(dbmodels.Model,
> model_logic.ModelExtensions):
>     test = dbmodels.ForeignKey(Test, db_column='test_idx',
> primary_key=True)
>     iteration = dbmodels.IntegerField()
>     attribute = dbmodels.CharField(max_length=90)
> -    value = dbmodels.DecimalField(null=True, max_digits=12,
> decimal_places=31,
> +    value = dbmodels.DecimalField(null=True, max_digits=12,
> decimal_places=2,
>                                   blank=True)
>
>     objects = model_logic.ExtendedManager()
> --
> 1.5.5.6
>
> _______________________________________________
> Autotest mailing list
> [email protected]
> http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
>
_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest

Reply via email to