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 18b0587f6 minor: fix typos in planner.rs error msg (#5776)
18b0587f6 is described below

commit 18b0587f63480c739e047ff215871b5bb2c767b0
Author: zhenxing jiang <[email protected]>
AuthorDate: Thu Mar 30 00:28:36 2023 +0800

    minor: fix typos in planner.rs error msg (#5776)
---
 datafusion/physical-expr/src/planner.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/physical-expr/src/planner.rs 
b/datafusion/physical-expr/src/planner.rs
index 1fbd73b3b..1fbbced61 100644
--- a/datafusion/physical-expr/src/planner.rs
+++ b/datafusion/physical-expr/src/planner.rs
@@ -51,7 +51,7 @@ pub fn create_physical_expr(
     if input_schema.fields.len() != input_dfschema.fields().len() {
         return Err(DataFusionError::Internal(format!(
             "create_physical_expr expected same number of fields, got \
-                     got Arrow schema with {}  and DataFusion schema with {}",
+                     Arrow schema with {}  and DataFusion schema with {}",
             input_schema.fields.len(),
             input_dfschema.fields().len()
         )));

Reply via email to