pitrou commented on code in PR #44217:
URL: https://github.com/apache/arrow/pull/44217#discussion_r1846741196
##########
cpp/src/arrow/compute/kernels/chunked_internal.h:
##########
@@ -50,34 +59,107 @@ struct ResolvedChunk {
}
};
+// A compressed (chunk_index, index_in_chunk) pair.
+// The goal of compression is to make it fit in 64 bits, allowing in place
+// replacement of logical uint64_t indices with physical indices.
+// (see ChunkedIndexMapper)
+struct ResolvedChunkIndex {
Review Comment:
Yes, that's a good idea. Will do.
--
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]