1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Merge pull request #2259 from Budibase/fix/sql-2250

SQL varchar/number parsing fix
This commit is contained in:
Michael Drury 2021-08-04 14:58:38 +01:00 committed by GitHub
commit a18a3c1ff1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -165,6 +165,10 @@ module External {
if (!row[key] || newRow[key] || field.autocolumn) {
continue
}
// parse floats/numbers
if (field.type === FieldTypes.NUMBER && !isNaN(parseFloat(row[key]))) {
newRow[key] = parseFloat(row[key])
}
// if its not a link then just copy it over
if (field.type !== FieldTypes.LINK) {
newRow[key] = row[key]

View file

@ -19,8 +19,6 @@ function parseBody(body: any) {
}
if (isIsoDateString(value)) {
body[key] = new Date(value)
} else if (!isNaN(parseFloat(value))) {
body[key] = parseFloat(value)
}
}
return body