datafusion icon indicating copy to clipboard operation
datafusion copied to clipboard

add 'unnest' table function

Open l1t1 opened this issue 4 months ago • 3 comments

Is your feature request related to a problem or challenge?

the 'unnest' table function reads an array or list, and out put a table

Describe the solution you'd like

the result is same as that of postgresql

select unnest(ARRAY[1,2,3]);
 unnest
--------
      1
      2
      3

select * from unnest(ARRAY[1,2,3]);
 unnest
--------
      1
      2
      3

Describe alternatives you've considered

No response

Additional context

No response

l1t1 avatar Feb 23 '24 04:02 l1t1