fresh-borzoni commented on code in PR #433:
URL: https://github.com/apache/fluss-rust/pull/433#discussion_r2902780386
##########
crates/fluss/src/row/mod.rs:
##########
@@ -273,6 +278,15 @@ impl<'a> InternalRow for GenericRow<'a> {
}),
}
}
+
+ fn get_array(&self, pos: usize) -> Result<FlussArray> {
+ match self.get_value(pos)? {
+ Datum::Array(a) => Ok(a.clone()),
Review Comment:
it clones on everY call, mb we wish to use Bytes to zero-copy?
--
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]