-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[EPIC] Add Decimal support #3523
Comments
Thanks @liukun4515. It's all the issues listed in #3480 as well:
Per other discussions, I'd like to help here. I think the general plan should be something like:
I think there will be some churn .. for example, to fix #3521 , we could use the Also, how do you deal with the synchronization between the projects? for example, some DF issues are due to the decimal cast code in arrow-rs .. how do we test the fixes? now that we're at the beginning of the dev cycle for 13, can we change DF to pin it to arrow-rs git revs? cc @alamb |
Hm, I see the situation in arrow-rs is complicated re decimals and I want to retract all opinions at this time. :) |
Hi @kmitchener I think we can resolve the arithmetic operation for decimal128 data type in this sprint, I will do this and move the operation to the arrow-rs. At the same time, I will fix the issue about decimal in datafusion. From the bug issue list, I think the most issue about decimal operation in the datafusion are about the And other issue is about feature, like casting between string and decimal which can be implement in the arrow-rs. |
@kmitchener if the casting feature is important for you, it's great to add it in the arrow-rs kernel. |
@kmitchener I have seen two basic patterns for this:
|
@liukun4515 I'll submit a couple PRs to move the decimal kernels to arrow-rs. I have the code moved locally and it's mostly working -- enough that I'm confident I can complete it. |
That would be awesome @kmitchener -- and a long time coming 👏 |
I think it is not easy work to move the decimal operation to arrow-rs. cc @kmitchener Can you submit your change in your branch? and give me link for your changes |
@liukun4515 @alamb Here are the 2 PRs. The one for arrow-rs is ready for review. The one for DF will remain in draft until arrow-rs 24 is released. If/once apache/arrow-rs#2770 is merged in, I'll update the DF PR to use git revs. |
I wonder if we should claim this ticket is complete? I wonder if there is anything else this ticket is tracking |
I will check above unclosed issue in this week. |
I think I am going to claim this epic is complete and that DataFusion supports decimals. We can track additional work in other tickets if needed |
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
(This section helps Arrow developers understand the context and why for this feature, in addition to the what)
I have implemented the feature about decimal in the datafusion. But didn't take care about some special case.
Specially when do the arithmetic operation:
Correctness Issues:
NULL cast/ NULL arithmetic/NULL comparator
String cast:
AGG decimal
User Experience:
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.
The text was updated successfully, but these errors were encountered: