tustvold commented on issue #4134:
URL: https://github.com/apache/arrow-rs/issues/4134#issuecomment-1523202970
I think the logic should probably be
```
if n.is_i64() {
set_object_scalar_field_type(field_types, k, DataType::Int64)?;
} else {
set_object_scalar_field_type(field_types, k, DataType::Float64)?;
}
```
Adding inference for unsigned integers would be a breaking change. I would
be happy to review a PR that made this change
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]