You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ja...@apache.org on 2023/06/25 02:39:51 UTC

[arrow-datafusion] branch main updated: minor: fix typo (#6761)

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

jakevin 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 d9d9328cc5 minor: fix typo (#6761)
d9d9328cc5 is described below

commit d9d9328cc59ad0abd782fc4764530f95785fed8d
Author: Alex Huang <hu...@gmail.com>
AuthorDate: Sun Jun 25 04:39:46 2023 +0200

    minor: fix typo (#6761)
---
 datafusion/physical-expr/src/array_expressions.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/physical-expr/src/array_expressions.rs b/datafusion/physical-expr/src/array_expressions.rs
index a3b4031356..ffb1eddf57 100644
--- a/datafusion/physical-expr/src/array_expressions.rs
+++ b/datafusion/physical-expr/src/array_expressions.rs
@@ -1488,7 +1488,7 @@ mod tests {
 
         assert_eq!(result, &UInt8Array::from(vec![4]));
 
-        // array_length([1, 2, 3, 4], 1) = 2
+        // array_length([1, 2, 3, 4], 1) = 4
         let array = array_length(&[
             list_array,
             ColumnarValue::Scalar(ScalarValue::UInt8(Some(1_u8))),