This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 402625f035 . (#9099)
402625f035 is described below

commit 402625f0353883d54aa68122a37b617179e908eb
Author: Adam Gutglick <[email protected]>
AuthorDate: Thu Feb 1 18:39:01 2024 +0200

    . (#9099)
---
 datafusion/physical-plan/src/filter.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/physical-plan/src/filter.rs 
b/datafusion/physical-plan/src/filter.rs
index 56a1b4e178..362fa10efc 100644
--- a/datafusion/physical-plan/src/filter.rs
+++ b/datafusion/physical-plan/src/filter.rs
@@ -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)

Reply via email to