zenazn opened a new issue, #37983:
URL: https://github.com/apache/arrow/issues/37983
### Describe the bug, including details regarding any error messages,
version, and platform.
The following javascript code against `apache-arrow` 13.x...
``` js
const arrow = require('apache-arrow');
console.log((new arrow.Table({x: arrow.vectorFromArray([1, 2, null,
4])})).schema.fields);
```
...inappropriately results in the following
``` js
[
Field {
name: 'x',
type: Float64 [Float] { precision: 2 },
nullable: false,
metadata: Map(0) {}
}
]
```
Note that the field is marked as non-nullable. This causes all sorts of fun
downstream issues
### Component(s)
JavaScript
--
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]