Skip to content

Commit

Permalink
. (#9099)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamGS authored Feb 1, 2024
1 parent 1f70823 commit 402625f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl FilterExec {
default_selectivity: u8,
) -> Result<Self, DataFusionError> {
if default_selectivity > 100 {
return plan_err!("Default flter selectivity needs to be less than 100");
return plan_err!("Default filter selectivity needs to be less than 100");
}
self.default_selectivity = default_selectivity;
Ok(self)
Expand Down

0 comments on commit 402625f

Please sign in to comment.