-
I received the following error in R
I had been assuming the alternative to having the Int64 be numeric would be to have it converted to string. But, am I correct that setting the value to FALSE simply keeps it as bit64 throughout processing? As you've already introduced the library dependency on bit64 (given the In any case, especially if it is to remain the default behavior, it would be helpful to better document what this variable means. I had thought that "numeric" was being used generically to describe a integer (or in some other cases floating point), and the alternative to that would have been to be a string type. So, I was essentially thinking the program was making a decision point: take a database-side BigInt/Int64 type value and bring it in as a number or a string. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We at some point tried using int64 throughout our software, but found some serious issues as documented here. I agree this needs to be documented better. It is on my to-do list. Numeric can contain much larger int values than Integer in R, hence it is the default behavior. I don't think many people would expect strings. |
Beta Was this translation helpful? Give feedback.
We at some point tried using int64 throughout our software, but found some serious issues as documented here. I agree this needs to be documented better. It is on my to-do list.
Numeric can contain much larger int values than Integer in R, hence it is the default behavior. I don't think many people would expect strings.