Changes between Version 5 and Version 34 of Ticket #36030


Ignore:
Timestamp:
Nov 21, 2025, 7:35:02 AM (9 days ago)
Author:
Jacob Walls
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36030

    • Property Triage Stage UnreviewedAccepted
    • Property Summary Rendering decimal to SQL is incoherent and leads to bugs. It relays on str formating not type.SQLite backend unnecessarily applies AS NUMERIC cast when preparing python Decimals
    • Property Keywords division decimalfield added
    • Property Version 5.1dev
  • Ticket #36030 – Description

    v5 v34  
     1After two rounds of triage and a third round of investigation, the most current thinking about the requirements for this ticket can be found at
     2comment:18 and comment:25.
     3
     4
     5Original report follows, but be aware that comment:18 and comment:25 describe this as more or less expected behavior:
     6----
     7
    18When I am using Decimal at Python level, I expect to use numeric type on database level. But it seems to depend on string formatting of decimal itself instead of type of object.
    29
Back to Top