Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
demetribu committed Nov 15, 2024
1 parent af6e6f5 commit e9b0bee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions datafusion/sqllogictest/test_files/unnest.slt
Original file line number Diff line number Diff line change
Expand Up @@ -853,3 +853,9 @@ select unnest(u.column5), j.* except(column2, column3) from unnest_table u join
1 2 1
3 4 2
NULL NULL 4

## Issue: https://github.com/apache/datafusion/issues/13237
query I
select count(*) from (select unnest(range(0, 100000)) id) t inner join (select unnest(range(0, 100000)) id) t1 on t.id = t1.id;
----
100000

0 comments on commit e9b0bee

Please sign in to comment.