Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions vortex-array/src/expr/exprs/fill_null/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ fn fill_null_canonical(
if let Some(result) = precondition(canonical.as_ref(), fill_value)? {
// The result of precondition may return another ScalarFn, in which case we should
// apply it immediately.
// TODO(aduffy): Remove this once we have better driver check. We're also implicitly
// relying on the fact that Cast execution will do an optimize on its result.
return result.execute::<ArrayRef>(ctx);
}
match canonical {
Expand Down
Loading