Skip to content

Commit

Permalink
Data type mapping for postgres stream
Browse files Browse the repository at this point in the history
Signed-off-by: Divyansh Bokadia <[email protected]>
  • Loading branch information
divbok committed Feb 10, 2025
1 parent 6016470 commit 77a1bc3
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ private Object parseMoney(String textValue) {
if (isNegative) {
textValue = textValue.substring(1);
}

char currencySymbol = textValue.charAt(0);
PGmoney money = new PGmoney(textValue);
double value = isNegative ? -money.val : money.val;
Expand Down

0 comments on commit 77a1bc3

Please sign in to comment.