jorisvandenbossche commented on issue #39816: URL: https://github.com/apache/arrow/issues/39816#issuecomment-1913101134
Looking at the implementation of `ArrowArrayAppendInterval`, I suppose it is missing an `ArrowBitmapAppend`? See https://github.com/apache/arrow-nanoarrow/blob/d5febf1c2a693338d76d691cdf486e4fe83ca128/src/nanoarrow/array_inline.h#L534-L575 And for example the `ArrowArrayAppendDecimal` just afterwards has this part: ``` if (private_data->bitmap.buffer.data != NULL) { NANOARROW_RETURN_NOT_OK(ArrowBitmapAppend(ArrowArrayValidityBitmap(array), 1, 1)); } ``` -- 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]
