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
lint
  • Loading branch information
adriangb committed Nov 18, 2025
commit 40f439ee84c49be9471045835c2bbd38e42fef4e
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/projection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ impl Stream for ProjectionStream {
impl RecordBatchStream for ProjectionStream {
/// Get the schema
fn schema(&self) -> SchemaRef {
Arc::clone(&self.projector.output_schema())
Arc::clone(self.projector.output_schema())
}
}

Expand Down
Loading