-
Notifications
You must be signed in to change notification settings - Fork 3.9k
GH-46627: [Swift] Support Decimal128
#46628
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
Conversation
Decimal128
714cb23 to
15dbb62
Compare
|
Let's do this in apache/arrow-swift. Cc: @raulcd |
|
It's a great news! |
|
apache/arrow-swift#1 is done, I've imported the commits into https://github.com/apache/arrow-swift |
Awesome!!! Thank you! |
|
|
### What changes were proposed in this pull request? This PR aims to update `ArrowReader.swift` with `GH-54`. Please note that we cannot use `Apache Arrow Swift` directly yet because - It is still unable to support `Decimal`. - apache/arrow#46628 - It still uses `GRPC Swift` while we use `GRPC Swift 2`. ### Why are the changes needed? To be ready for the upstream release because `v21.0.0-rc0` tag is created. - https://github.com/apache/arrow-swift/releases/tag/v21.0.0-rc0 According to the release notes, this seems to be the only one which needs to catch up. ### Does this PR introduce _any_ user-facing change? No behavior change because this is a refactoring to suppress warning messages. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #207 from dongjoon-hyun/SPARK-52678. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
Rationale for this change
This PR aims to support
Decimal128for Decimal type.What changes are included in this PR?
There are two decimal types;
Decimal128andDecimal256. Since Apache Spark usesDecimal128, this PR focus onDecimal128.Are these changes tested?
Pass the CIs.
Are there any user-facing changes?
Previously,
Decimaltype was not supported.Decimal128arrow-swift#17