From e1d376bd36c2e8dc47eea41134a91bb341590ddc Mon Sep 17 00:00:00 2001 From: eegeek Date: Thu, 26 Jul 2012 14:04:20 +0000 Subject: [PATCH] 0000732 - Support varying Locales for the "REAL" data type (e.g., Oracle's Float(63)) --- .../org/jumpmind/db/platform/AbstractDatabasePlatform.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/symmetric-db/src/main/java/org/jumpmind/db/platform/AbstractDatabasePlatform.java b/symmetric-db/src/main/java/org/jumpmind/db/platform/AbstractDatabasePlatform.java index 4f3a1ce6d3..8b4cf67621 100644 --- a/symmetric-db/src/main/java/org/jumpmind/db/platform/AbstractDatabasePlatform.java +++ b/symmetric-db/src/main/java/org/jumpmind/db/platform/AbstractDatabasePlatform.java @@ -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