zanmato1984 opened a new issue, #47807:
URL: https://github.com/apache/arrow/issues/47807

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   I've minimized the reproduction in the following C++ case:
   ```
   TEST(TestChooseKernel, ArraySpanNullCountForChunked) {
     auto indices = ArrayFromJSON(int64(), "[0, 1, 0, 1, 0, null]");
     auto values1 = ArrayFromJSON(int64(), "[10, 11, 12, 13, 14, 15]");
     auto values2 = ChunkedArrayFromJSON(int64(), {"[100, 101]", "[102, 103, 
104, 105]"});
     CheckScalar("choose", {indices, values1, values2},
                 ArrayFromJSON(int64(), R"([10, 101, 12, 103, 14, null])"));
   }
   ```
   
   Failure:
   ```
   Test has ended unexpectedly: Signal received: SIGSEGV
   ```
   
   ### Component(s)
   
   C++


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