tgujar commented on code in PR #8363:
URL: https://github.com/apache/arrow-datafusion/pull/8363#discussion_r1424649677
##########
datafusion/substrait/src/logical_plan/producer.rs:
##########
@@ -1127,6 +1162,48 @@ pub fn to_substrait_rex(
})),
})
}
+ Expr::InSubquery(InSubquery {
+ expr,
+ subquery,
+ negated,
+ }) => {
+ let substrait_expr =
+ to_substrait_rex(ctx, expr, schema, col_ref_offset,
extension_info)?;
+
+ let subquery_plan =
Review Comment:
I added `ctx` here so that I could call `to_substrait_rel` recursively. All
other functions in this file which have an added argument of `ctx` are to
support this
--
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]