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