liurenjie1024 commented on code in PR #882: URL: https://github.com/apache/iceberg-rust/pull/882#discussion_r1922963798
########## crates/iceberg/src/scan.rs: ########## @@ -248,29 +248,6 @@ impl<'a> TableScanBuilder<'a> { ) })?; - let field = schema - .as_struct() - .field_by_id(field_id) - .ok_or_else(|| { - Error::new( - ErrorKind::FeatureUnsupported, - format!( - "Column {} is not a direct child of schema but a nested field, which is not supported now. Schema: {}", - column_name, schema - ), - ) - })?; Review Comment: Hi, @ZENOTME If we only want to support nested types without supporting deeply nested types, we can't remove this check. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org