izveigor opened a new issue, #6558: URL: https://github.com/apache/arrow-datafusion/issues/6558
### Is your feature request related to a problem or challenge? Arter Pull Request: https://github.com/apache/arrow-datafusion/pull/6384, In `arrow-datafusion` casting between arrays elements stopped working. The feature could be of great help when working with different types of data. ### Describe the solution you'd like All rules should be simillar to the `cast` function in `arrow-rs` (See https://docs.rs/arrow/latest/arrow/compute/kernels/cast/index.html) For example, if we create new array with `Int32Type` and `Int64Type` should return `Int64Array`. ``` select make_array(Int32(1), Int64(2)); ---- Int64(1), Int64(2) ``` ### Describe alternatives you've considered _No response_ ### Additional context Simillar Issues: https://github.com/apache/arrow-datafusion/issues/6119 https://github.com/apache/arrow-datafusion/issues/6075 Simillar PR: https://github.com/apache/arrow-datafusion/pull/6384 -- 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]
