Changes between Version 5 and Version 34 of Ticket #36030
- Timestamp:
- Nov 21, 2025, 7:35:02 AM (9 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36030
- Property Triage Stage Unreviewed → Accepted
- 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.1 → dev
-
Ticket #36030 – Description
v5 v34 1 After two rounds of triage and a third round of investigation, the most current thinking about the requirements for this ticket can be found at 2 comment:18 and comment:25. 3 4 5 Original report follows, but be aware that comment:18 and comment:25 describe this as more or less expected behavior: 6 ---- 7 1 8 When 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. 2 9