EmilyMatt opened a new issue, #18330: URL: https://github.com/apache/datafusion/issues/18330
### Is your feature request related to a problem or challenge? Currently there are countless duplicates of the same code around the project: namely, receive a slice of exprs and an input batch, evaluate each expr with the input batch and call to_array(batch.num_rows) on the resulting ColumnarValues. Most of these code chunks are inlined within functions, but one of them lives in aggregates/mod.rs, which seems out of place, and more importantly is marked pub. ### Describe the solution you'd like Move this pub function somewhere in datafusion_common, make all other occurrences call this function. ### Describe alternatives you've considered _No response_ ### 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
