pitrou commented on code in PR #13009:
URL: https://github.com/apache/arrow/pull/13009#discussion_r860702668
##########
cpp/src/arrow/chunked_array.h:
##########
@@ -141,6 +141,9 @@ class ARROW_EXPORT ChunkedArray {
/// \brief Return the type of the chunked array
const std::shared_ptr<DataType>& type() const { return type_; }
+ /// \brief Return chunk resolver of the chunked array
+ const internal::ChunkResolver& GetChunkResolver() const { return
chunk_resolver_; }
Review Comment:
This is exposing an internal facility as a public member API. I don't know
what our API hygiene for this should be. @westonpace @xhochy @lidavidm Thoughts?
(we could also make this private and use a `friend` declaration for the
consuming class)
--
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]