fresh-borzoni commented on code in PR #544:
URL: https://github.com/apache/fluss-rust/pull/544#discussion_r3233893260
##########
crates/fluss/src/row/field_getter.rs:
##########
@@ -183,8 +187,9 @@ impl InnerFieldGetter {
InnerFieldGetter::TimestampLtz { pos, precision } => {
Datum::TimestampLtz(row.get_timestamp_ltz(*pos, *precision)?)
}
- // TODO: add Map and Row field getter support once their binary
forms are implemented.
+ // TODO: add Map field getter support once its binary form is
implemented.
InnerFieldGetter::Array { pos } =>
Datum::Array(row.get_array(*pos)?),
+ InnerFieldGetter::Row { pos } =>
Datum::Row(Box::new(row.get_row(*pos)?.clone())),
Review Comment:
ditto
--
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]