vbarua commented on code in PR #13127:
URL: https://github.com/apache/datafusion/pull/13127#discussion_r1817926340
##########
datafusion/substrait/src/logical_plan/consumer.rs:
##########
@@ -934,14 +963,15 @@ pub async fn from_substrait_rel(
_ => {
not_impl_err!("Unsupported ReadType: {:?}",
&read.as_ref().read_type)
}
- }
+ }?;
+ apply_emit_kind(read.common.as_ref(), plan)
Review Comment:
At this time, I've chosen to handle emits on ReadRels as DataFusion
Projections.
Future work can be done to further optimize this and push the output
mappings further down.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]