You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Casting of input should be done automatically according to function signature
For example, the execution logic of corr is implemented in float64 type, so when input is int32 or other compatible type, it will automatically convert to Float64
If the casting logic is implemented correctly during planning, we can safely remove the explicit cast, however, if I try to remove it now, the benchmark query mentioned in #13581 won't run
Describe the solution you'd like
Remove cast and fix the error
Add the regression test
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
If the casting logic is implemented correctly during planning, we can safely remove the explicit cast, however, if I try to remove it now, the benchmark query mentioned in #13581 won't run
Is your feature request related to a problem or challenge?
Thanks @jayzhan211 for noticing it in #13581 (comment)
Casting of input should be done automatically according to function signature
For example, the execution logic of
corr
is implemented in float64 type, so when input is int32 or other compatible type, it will automatically convert to Float64If the casting logic is implemented correctly during planning, we can safely remove the explicit cast, however, if I try to remove it now, the benchmark query mentioned in #13581 won't run
Describe the solution you'd like
cast
and fix the errorDescribe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: