You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "izveigor (via GitHub)" <gi...@apache.org> on 2023/06/29 14:00:14 UTC

[GitHub] [arrow-datafusion] izveigor commented on a diff in pull request #6796: Implement unnest function

izveigor commented on code in PR #6796:
URL: https://github.com/apache/arrow-datafusion/pull/6796#discussion_r1246664186


##########
datafusion/core/tests/sqllogictests/test_files/array.slt:
##########
@@ -531,3 +531,49 @@ SELECT
 FROM t
 ----
 true true
+statement ok

Review Comment:
   Can you create a test with multidimensional arrays.
   The result should be:
   ```
   postgres=# select unnest(array[array[1, 2, 3], array[4, 5, 6]]);
    unnest 
   --------
         1
         2
         3
         4
         5
         6
   (6 rows)
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org