Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
project filter to exclude the filter expression
  • Loading branch information
goldmedal committed Jun 23, 2025
commit e06e4bb2e25d06ee1db75dd03a80752d3fcf3c0b
5 changes: 5 additions & 0 deletions datafusion/core/src/physical_planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,11 @@ impl DefaultPhysicalPlanner {
Arc::clone(&runtime_expr[0]),
Arc::new(async_exec),
)?
// project the output columns excluding the async functions
// The async functions are always appended to the end of the schema.
.with_projection(Some(
(0..input.schema().fields().len()).collect(),
))?
}
_ => {
return internal_err!(
Expand Down