-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Decimal128
714cb23 to
15dbb62
Compare
Member
Author
Member
|
Let's do this in apache/arrow-swift. Cc: @raulcd |
Member
Author
|
It's a great news! |
Member
|
apache/arrow-swift#1 is done, I've imported the commits into https://github.com/apache/arrow-swift |
Contributor
Awesome!!! Thank you! |
|
|
dongjoon-hyun
added a commit
to apache/spark-connect-swift
that referenced
this pull request
Jul 3, 2025
### 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 <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
dongjoon-hyun
added a commit
to apache/spark-connect-swift
that referenced
this pull request
Jan 4, 2026
### What changes were proposed in this pull request? This PR aims to support `list` data type by syncing with Apache Arrow Swift project. ### Why are the changes needed? We still cannot use Apache Arrow Swift directly due to the mismatch like apache/arrow#46628. Until we achieve the goal, we need to sync with the upstream to bring newly added but unreleased features. - apache/arrow-swift#16 - apache/arrow-swift#39 ### Does this PR introduce _any_ user-facing change? No, ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #272 from dongjoon-hyun/SPARK-54892. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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