Skip to content

Commit

Permalink
0002644: Large float values fail to load on Sql Server
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Jun 30, 2016
1 parent ddcfbdd commit c7b523a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -96,7 +96,7 @@ public boolean canColumnBeUsedInWhereClause(Column column) {

@Override
protected Object parseFloat(String value) {
return cleanNumber(value);
return cleanNumber(value).replace(',', '.');
}
}

Expand Down

0 comments on commit c7b523a

Please sign in to comment.