aocsa commented on a change in pull request #10802: URL: https://github.com/apache/arrow/pull/10802#discussion_r688576953
########## File path: cpp/src/arrow/compute/kernels/vector_selection.cc ########## @@ -2146,6 +2147,219 @@ class TakeMetaFunction : public MetaFunction { } }; +// ---------------------------------------------------------------------- +// DropNull Implementation + +Status GetDropNullFilter(const Array& values, MemoryPool* memory_pool, Review comment: previous to this I was using `Result<...>` for this helper function, Niranda suggest me this way instead. So I think this is just a preference. Personally I prefer the use of `Result<...>` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org