-
Notifications
You must be signed in to change notification settings - Fork 989
Description
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
In the apache/datafusion#122 (comment), we need to support decimal for cast
and try_cast
In the first step, we just support signed numeric data type to decimal, and other casting rules related to decimal will be supported in the feature.
future
- signed numeric to decimal support cast signed numeric to decimal #1044
- unsigned numeric to decimal @alamb do we need to support this? My opinion is that unsigned data type is not in the standard SQL data type, and we no need to support this.
- UTF-8 to decimal Support casting from String to Decimal #3281
- decimal to signed numeric data type support cast decimal to signed numeric #1073
- decimal to UTF-8
- decimal to decimal support cast decimal to decimal #1084
enhancement
-
optimize iter the decimal array and use the from iter to construct Int、Float Array Add into iter for decimal array #1083
-
add benchmark result for cast decimal data type
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.