Prajwal-banakar commented on code in PR #411:
URL: https://github.com/apache/fluss-rust/pull/411#discussion_r2879020750


##########
crates/fluss/src/client/table/lookup.rs:
##########
@@ -20,13 +20,16 @@ use crate::client::metadata::Metadata;
 use crate::client::table::partition_getter::PartitionGetter;
 use crate::error::{Error, Result};
 use crate::metadata::{PhysicalTablePath, RowType, TableBucket, TableInfo, 
TablePath};
+use crate::record::ArrowRecordBatchInnerBuilder;

Review Comment:
   This import is still required. In Rust, trait methods can only be called if 
the trait is in scope. RowAppendRecordBatchBuilder implements 
ArrowRecordBatchInnerBuilder, so without this import, .append() and 
.build_arrow_record_batch() are not callable. Removing it breaks the build.



-- 
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]

Reply via email to