Skip to content

Commit 0a99805

Browse files
committed
Add issue to explain why we don't support DF dynamic expressions
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent a1ab932 commit 0a99805

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vortex-datafusion/src/convert/exprs.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ impl TryFromDataFusion<DFOperator> for Operator {
123123
}
124124

125125
pub(crate) fn can_be_pushed_down(expr: &PhysicalExprRef, schema: &Schema) -> bool {
126-
// We currently do not support pushdown of dynamic expressions in DF
126+
// We currently do not support pushdown of dynamic expressions in DF.
127+
// See issue: https://github.com/vortex-data/vortex/issues/4034
127128
if is_dynamic_physical_expr(expr) {
128129
return false;
129130
}

0 commit comments

Comments
 (0)