alamb opened a new issue, #4835: URL: https://github.com/apache/arrow-rs/issues/4835
**Describe the bug** Found by @jonahgao in https://github.com/apache/arrow-datafusion/pull/7568 **To Reproduce** ```rust fn main() { let arr = NullArray::new(1); println!("arr.is_null(0): {}", arr.is_null(0)) } ``` Prints ``` arr.is_null(0): false ``` **Expected behavior** `NullArray::is_null()` should return true for all elements **Additional context** <!-- Add any other context about the problem here. --> -- 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]
