pstorozenko commented on issue #34634:
URL: https://github.com/apache/arrow/issues/34634#issuecomment-1476820862

   Anyway, the following code in R yields the same error.
   
   ```r
   library(arrow)
   arr <- chunked_array(c(TRUE, TRUE))
   mask <- Array$create(c(FALSE, TRUE))
   replacements <- Array$create(c(FALSE, FALSE))
   
   call_function("replace_with_mask", arr, mask, replacements)
   ```
   
   ```
   ChunkedArray
   <bool>
   [
   <Invalid array: Buffer #1 too small in array of type bool and length 2: 
expected at least 1 byte(s), got 0>
   ]
   ```


-- 
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]

Reply via email to