We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f62560 commit eb469f8Copy full SHA for eb469f8
vortex-datafusion/src/convert/exprs.rs
@@ -123,7 +123,8 @@ impl TryFromDataFusion<DFOperator> for Operator {
123
}
124
125
pub(crate) fn can_be_pushed_down(expr: &PhysicalExprRef, schema: &Schema) -> bool {
126
- // We currently do not support pushdown of dynamic expressions in DF
+ // We currently do not support pushdown of dynamic expressions in DF.
127
+ // See issue: https://github.com/vortex-data/vortex/issues/4034
128
if is_dynamic_physical_expr(expr) {
129
return false;
130
0 commit comments