bkietz commented on code in PR #35628:
URL: https://github.com/apache/arrow/pull/35628#discussion_r1231420457
##########
cpp/src/arrow/array/array_binary.h:
##########
@@ -217,6 +218,90 @@ class ARROW_EXPORT LargeStringArray : public
LargeBinaryArray {
Status ValidateUTF8() const;
};
+// ----------------------------------------------------------------------
+// BinaryView and StringView
+
+/// Concrete Array class for variable-size binary view data using the
+/// StringHeader struct to reference in-line or out-of-line string values
+class ARROW_EXPORT BinaryViewArray : public PrimitiveArray {
+ public:
+ using TypeClass = BinaryViewType;
+ using IteratorType = stl::ArrayIterator<BinaryViewArray>;
+
+ explicit BinaryViewArray(const std::shared_ptr<ArrayData>& data);
+
+ BinaryViewArray(int64_t length, std::shared_ptr<Buffer> data, BufferVector
char_buffers,
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]