ArianaVillegas commented on code in PR #13334:
URL: https://github.com/apache/arrow/pull/13334#discussion_r922233692
##########
cpp/src/arrow/array/array_dict.h:
##########
@@ -111,6 +111,10 @@ class ARROW_EXPORT DictionaryArray : public Array {
const DictionaryType* dict_type() const { return dict_type_; }
+ bool IsNull(int64_t i) const {
+ return indices_->IsNull(i) || dictionary_->IsNull(GetValueIndex(i));
Review Comment:
Sure
--
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]