bkietz commented on code in PR #35628:
URL: https://github.com/apache/arrow/pull/35628#discussion_r1231473564
##########
cpp/src/arrow/array/dict_internal.h:
##########
@@ -156,6 +156,60 @@ struct DictionaryTraits<T, enable_if_base_binary<T>> {
}
};
+template <typename T>
+struct DictionaryTraits<T, enable_if_binary_view_like<T>> {
+ using MemoTableType = typename HashTraits<T>::MemoTableType;
+
+ static_assert(std::is_same_v<MemoTableType, BinaryMemoTable<BinaryBuilder>>);
+
+ static Status GetDictionaryArrayData(MemoryPool* pool,
Review Comment:
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]