rohanjain101 opened a new issue, #47234: URL: https://github.com/apache/arrow/issues/47234
### Describe the bug, including details regarding any error messages, version, and platform. Arrow 21: ``` >>> z = pa.array([True, False, False, False, False, None]) >>> z.fill_null(True) <pyarrow.lib.BooleanArray object at 0x0000019E1F111720> [ true, **true**, false, false, false, **false** ] >>> pa.__version__ '21.0.0 ``` Arrow 20: ``` >>> z = pa.array([True, False, False, False, False, None]) >>> z.fill_null(True) <pyarrow.lib.BooleanArray object at 0x00000189726593C0> [ true, false, false, false, false, true ] >>> pa.__version__ '20.0.0' >>> ``` The result in arrow 21 looks not expected. ### Component(s) C++, Python -- 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: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org