You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/03/08 19:53:57 UTC

[GitHub] [arrow] zeyuanxy commented on a change in pull request #12579: ARROW-15829: [C++] Support SetNull in NumericalBuilder

zeyuanxy commented on a change in pull request #12579:
URL: https://github.com/apache/arrow/pull/12579#discussion_r822017575



##########
File path: cpp/src/arrow/array/builder_base.h
##########
@@ -250,6 +250,9 @@ class ARROW_EXPORT ArrayBuilder {
   // Set the next validity bits to null (i.e. invalid).
   void UnsafeSetNull(int64_t length);
 
+  /// Set the index bit to null or not null
+  void UnsafeSetIsNull(int64_t index, bool is_null);

Review comment:
       Thanks. Yeah it makes sense. I moved this method to `NumericBuilder`




-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org