Kimahriman commented on code in PR #36701:
URL: https://github.com/apache/arrow/pull/36701#discussion_r1610364145
##########
python/pyarrow/src/arrow/python/numpy_to_arrow.cc:
##########
@@ -223,10 +223,16 @@ class NumPyConverter {
Status Visit(const NullType& type) { return
TypeNotImplemented(type.ToString()); }
// NumPy ascii string arrays
+ template <typename T>
+ Status VisitBinary(T* builder);
Status Visit(const BinaryType& type);
+ Status Visit(const LargeBinaryType& type);
// NumPy unicode arrays
+ template <typename T>
+ Status VisitString(T* builder);
Review Comment:
Just the `VisitBinary` and `VisitString` declarations specifically?
--
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]