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 e069c373d8 typo in array_slt (#8831)
e069c373d8 is described below

commit e069c373d89106a7e7149ced36349e0a9d08b391
Author: Alex Huang <[email protected]>
AuthorDate: Fri Jan 12 04:36:49 2024 +0800

    typo in array_slt (#8831)
---
 datafusion/sqllogictest/test_files/array.slt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/datafusion/sqllogictest/test_files/array.slt 
b/datafusion/sqllogictest/test_files/array.slt
index 822c4bcf60..6b45f204fe 100644
--- a/datafusion/sqllogictest/test_files/array.slt
+++ b/datafusion/sqllogictest/test_files/array.slt
@@ -953,7 +953,7 @@ select array_element(arrow_cast(make_array(make_array(1, 2, 
3, 4, 5), make_array
 ----
 [1, 2, 3, 4, 5]
 
-# array_extract scalar function #8 (function alias `array_slice`)
+# array_extract scalar function #8 (function alias `array_element`)
 query IT
 select array_extract(make_array(1, 2, 3, 4, 5), 2), 
array_extract(make_array('h', 'e', 'l', 'l', 'o'), 3);
 ----
@@ -964,7 +964,7 @@ select array_extract(arrow_cast(make_array(1, 2, 3, 4, 5), 
'LargeList(Int64)'),
 ----
 2 l
 
-# list_element scalar function #9 (function alias `array_slice`)
+# list_element scalar function #9 (function alias `array_element`)
 query IT
 select list_element(make_array(1, 2, 3, 4, 5), 2), 
list_element(make_array('h', 'e', 'l', 'l', 'o'), 3);
 ----
@@ -975,7 +975,7 @@ select list_element(arrow_cast(make_array(1, 2, 3, 4, 5), 
'LargeList(Int64)'), 2
 ----
 2 l
 
-# list_extract scalar function #10 (function alias `array_slice`)
+# list_extract scalar function #10 (function alias `array_element`)
 query IT
 select list_extract(make_array(1, 2, 3, 4, 5), 2), 
list_extract(make_array('h', 'e', 'l', 'l', 'o'), 3);
 ----

Reply via email to