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
Add support for uploading NA values in ints and doubles.
It also works for booleans, if you both write and read them via Rserve/erserve,
but if you for instance upload a boolean array with NAs in it and then save()
it, and load() it up in a regular R instance, that R will see the NAs as TRUE.
Fix issue with transferring xt_array_str.
Turns out Rserve doesn't want to eat what it serves. It sends xt_array_str with \0-terminated strings padded out with
\1 to take a multiple of 4 bytes. But it only expects the \1-padding at the end of the array and not at each individual
string when it receives data.