Skip to content

Commit

Permalink
Provide default implementation of reset
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde committed May 9, 2024
1 parent ad26df9 commit ca898b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datafusion/physical-plan/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,9 @@ pub trait ExecutionPlan: Debug + DisplayAs + Send + Sync {
Ok(Statistics::new_unknown(&self.schema()))
}

fn reset(&self) -> Result<()>;
fn reset(&self) -> Result<()> {
Ok(())
}
}

/// Extension trait provides an easy API to fetch various properties of
Expand Down

0 comments on commit ca898b0

Please sign in to comment.