jayzhan211 commented on code in PR #6796: URL: https://github.com/apache/arrow-datafusion/pull/6796#discussion_r1280692321
########## datafusion/core/tests/sqllogictests/test_files/array.slt: ########## @@ -1794,9 +1802,150 @@ select make_array(f0) from fixed_size_list_array ---- [[1, 2], [3, 4]] +## Unnest -### Delete tables +# Set target partitions to 1 for deterministic results +statement ok +set datafusion.execution.target_partitions = 1; Review Comment: `rowsort` might not be a good idea, if the result is in descending order, `rowsort` convert it to ascending forcibly, but if the code contains a bug that does not return in descending order, then we might miss it. -- 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]
