The connector was interpreting all the decimal values as double even if the mode was set to precise - this would have resulted in a loss of precision when streamed.
Solution
This PR disables the default form being set to double when the decimal.handling.mode is set to precise.
Problem
The connector was interpreting all the decimal values as
double
even if the mode was set toprecise
- this would have resulted in a loss of precision when streamed.Solution
This PR disables the default form being set to
double
when thedecimal.handling.mode
is set toprecise
.