You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem with retrieving large numbers using opal.table_get().
In my Opal db I have a column with value type "integer", e.g., 11433052800. When retrieving a table with these values using opal.table_get() the created dataframe only contains NA for these large numbers. As a test I tried converting the value type to decimal, which works but is not a permanent solution. Also, because my values will then look like, e.g., 1.14330528E10 (which is not informative for me).
Hope you might know what's going on! Thanks!
The text was updated successfully, but these errors were encountered:
Note that current implementations of R use 32-bit integers for integer vectors, so the range of representable integers is restricted to about +/-2*10^9: doubles can hold much larger integers exactly.
that is why the decimal type works because it is mapped to a double in R.
As per the "1.14330528E10" value, this is the default string representation of a java's Double object.
Hi,
I have a problem with retrieving large numbers using opal.table_get().
In my Opal db I have a column with value type "integer", e.g., 11433052800. When retrieving a table with these values using opal.table_get() the created dataframe only contains NA for these large numbers. As a test I tried converting the value type to decimal, which works but is not a permanent solution. Also, because my values will then look like, e.g., 1.14330528E10 (which is not informative for me).
Hope you might know what's going on! Thanks!
The text was updated successfully, but these errors were encountered: