shehabgamin commented on code in PR #14268:
URL: https://github.com/apache/datafusion/pull/14268#discussion_r1933056565


##########
datafusion/expr/src/type_coercion/functions.rs:
##########
@@ -584,23 +544,7 @@ fn get_valid_types(
                 match target_type_class {
                     TypeSignatureClass::Native(native_type) => {
                         let target_type = native_type.native();
-                        if &logical_type == target_type {

Review Comment:
   > `TypeSignature::Coercible` is designed to cast between the same logical 
type, but now it casts to any kind of type, I don't think this is ideal.
   
   This is what the doc comments say:
   ```
   /// One or more arguments belonging to the [`TypeSignatureClass`], in order.
   ///
   /// For example, `Coercible(vec![logical_float64()])` accepts
   /// arguments like `vec![Int32]` or `vec![Float32]`
   /// since i32 and f32 can be cast to f64
   ///
   /// For functions that take no arguments (e.g. `random()`) see 
[`TypeSignature::Nullary`].
   Coercible(Vec<TypeSignatureClass>),
   ```
   Link:
   
https://github.com/apache/datafusion/blob/a4917d44c8cc3b08c61383320285d239250dd94e/datafusion/expr-common/src/signature.rs#L127-L134



-- 
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...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to