Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
Dylan MiyakeDylan MiyakePriority
MinorLabels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Dylan Miyake
Dylan MiyakePriority
Labels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Created 27 August 2018 at 21:29
Updated 17 February 2023 at 10:53
Resolved 17 February 2023 at 10:53
Lucee's deserializer seems to get tripped up on numbers in JSON that have lots of zeroes in them.
For example,
will get cast to a string ("1234.00000000") in Lucee when deserialized, while
will properly get cast to a number (1234).
The reason that this is an issue is that we're using Lucee to deserialize JSON that's created by SQL Server, which outputs numeric values with all the trailing zeroes when using something like numeric(22,8).
We're working around this by hacking the JSON text generated by SQL server and taking out the trailing zeros, but it's a nasty code smell.