Fix the problem that the data type precision of decimal at the sink side is greater than the precision at the source side, the data is written incorrectly. Like this:
The filed in source is decimal(4,1), the value of temp in source is 36.3
The filed in sinnk is decimal(16,6) which the table is created manually
And then the result is not correct, the value of temp in sink is 0.000363
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
[ ] If any new Jar binary package adding in your PR, please add License Notice according
New License Guide
Purpose of this pull request
Fix the problem that the data type precision of decimal at the sink side is greater than the precision at the source side, the data is written incorrectly. Like this: The filed in source is decimal(4,1), the value of temp in source is 36.3 The filed in sinnk is decimal(16,6) which the table is created manually And then the result is not correct, the value of temp in sink is 0.000363
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
release-note
.