pitrou commented on code in PR #35628:
URL: https://github.com/apache/arrow/pull/35628#discussion_r1234260488
##########
cpp/src/arrow/type_traits.h:
##########
@@ -341,6 +341,16 @@ struct TypeTraits<BinaryType> {
static inline std::shared_ptr<DataType> type_singleton() { return binary(); }
};
+template <>
+struct TypeTraits<BinaryViewType> {
+ using ArrayType = BinaryViewArray;
+ using BuilderType = BinaryViewBuilder;
+ using ScalarType = BinaryViewScalar;
+ using CType = StringHeader;
+ constexpr static bool is_parameter_free = true;
Review Comment:
This contradicts the `has_raw_pointers` parameter.
--
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]