1
0
mirror of https://github.com/django/django.git synced 2025-10-29 08:36:09 +00:00

[3.0.x] Fixed #29823 -- Doc'd limitation of DecimalField on SQLite.

Backport of b8dff52f44 from master
This commit is contained in:
Claude Paroz
2019-09-08 23:25:53 +02:00
committed by Mariusz Felisiak
parent e0bb9092d1
commit c2057205d9
2 changed files with 15 additions and 1 deletions

View File

@@ -677,6 +677,18 @@ substring filtering.
.. _documented at sqlite.org: https://www.sqlite.org/faq.html#q18
.. _sqlite-decimal-handling:
Decimal handling
----------------
SQLite has no real decimal internal type. Decimal values are internally
converted to the ``REAL`` data type (8-byte IEEE floating point number), as
explained in the `SQLite datatypes documentation`__, so they don't support
correctly-rounded decimal floating point arithmetic.
__ https://www.sqlite.org/datatype3.html#storage_classes_and_datatypes
"Database is locked" errors
---------------------------