Omega359 opened a new issue, #9349: URL: https://github.com/apache/arrow-datafusion/issues/9349
### Describe the bug Note that this isn't pertaining to unnest(column1, column2) functionality but rather that what should either work or explicitly fail (because it's not supported) is returning incorrect results. ### To Reproduce I used the unnest.slt test and added the following: ``` query select unnest(column1), column3 from unnest_table; ``` If you run ``` cargo test --test sqllogictests -- unnest --complete ``` this will complete to the following ``` query I select unnest(column1), column3 from unnest_table; ---- 1 2 3 4 5 6 12 ``` That result is wrong as it's missing column3 data. ### Expected behavior Either an error be returned or the result returns something like ``` 1, 1 2, 1 3, 1 4, 2 5, 2 6, 3 12, null ``` ### Additional context _No response_ -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
