Josh Highley
03/03/2021, 2:55 PM{ "account":" 123", .....}
If my realtime table defines the account column as DOUBLE, then the record loads with no issue -- the spaces appear to be ignored. However, if I define the column as INT then the record does not load. More troublesome, I can't find any error messages in any of the logs -- I would expect some kind of error message?Mayank
Mayank
Mayank
Josh Highley
03/03/2021, 6:13 PMJosh Highley
03/03/2021, 6:14 PMJosh Highley
03/03/2021, 6:29 PMMayank
Kishore G
Mayank
Kishore G
Mayank
Mayank
Double.parseDouble(" 123"); -> 123.0
Mayank
Integer.parseInt(" 123"); -> NumberFormatException