puneetdixit200 commented on PR #22285: URL: https://github.com/apache/datafusion/pull/22285#issuecomment-4485050417
I ran the benchmark on the PR head (`973e3dc17`) and the merge base (`66f82af69`) on the same machine: | case | merge base | PR head | | --- | ---: | ---: | | perfect / no-null lists | 916.69 us (`arrays_zip_no_nulls_8192`) | 5.1096 us (`arrays_zip_perfect_zip_8192`) | | 10% null lists | 1.0153 ms | 986.94 us | So the perfect-list path is about 179x faster. The 10% null case is effectively unchanged in this run, about 2.8% lower, because it still takes the general path. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
