Skip to content

Commit

Permalink
0000732 - Support varying Locales for the "REAL" data type (e.g., Ora…
Browse files Browse the repository at this point in the history
…cle's Float(63))
  • Loading branch information
mhanes committed Jul 26, 2012
1 parent 10bfd78 commit e1d376b
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -342,7 +342,8 @@ public Object[] getObjectValues(BinaryEncoding encoding, String[] values,
|| type == Types.BIT) {
objectValue = Integer.valueOf(value);
} else if (type == Types.NUMERIC || type == Types.DECIMAL
|| type == Types.FLOAT || type == Types.DOUBLE) {
|| type == Types.FLOAT || type == Types.DOUBLE
|| type == Types.REAL) {
// The number will have either one period or one
// comma
// for the decimal point, but we need a period
Expand Down

0 comments on commit e1d376b

Please sign in to comment.