liukun4515 commented on a change in pull request #1073: URL: https://github.com/apache/arrow-rs/pull/1073#discussion_r773637348
########## File path: arrow/src/compute/kernels/cast.rs ########## @@ -108,6 +112,8 @@ pub fn can_cast_types(from_type: &DataType, to_type: &DataType) -> bool { | Dictionary(_, _), Null, ) => true, + (Decimal(_, _), _) => false, Review comment: All data types expect above signed numeric data type, the result will be false with decimal. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org