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
[SPARK-54043] Update Spark Connect-generated Swift source code with 4.1.0-preview3 RC1
### What changes were proposed in this pull request?
This PR aims to update Spark Connect-generated Swift source code with Apache Spark `4.1.0-preview3` RC1.
### Why are the changes needed?
There are many changes between Apache Spark 4.1.0-preview2 and preview3.
- apache/spark#52685
- apache/spark#52613
- apache/spark#52553
- apache/spark#52532
- apache/spark#52517
- apache/spark#52514
- apache/spark#52487
- apache/spark#52328
- apache/spark#52200
- apache/spark#52154
- apache/spark#51344
To use the latest bug fixes and new messages to develop for new features of `4.1.0-preview3`.
```
$ git clone -b v4.1.0-preview3 https://github.com/apache/spark.git
$ cd spark/sql/connect/common/src/main/protobuf/
$ protoc --swift_out=. spark/connect/*.proto
$ protoc --grpc-swift_out=. spark/connect/*.proto
// Remove empty GRPC files
$ cd spark/connect
$ grep 'This file contained no services' * | awk -F: '{print $1}' | xargs rm
```
### Does this PR introduce _any_ user-facing change?
Pass the CIs.
### How was this patch tested?
Pass the CIs. I manually tested with `Apache Spark 4.1.0-preview3` (with the two SDP ignored tests).
```
$ swift test --no-parallel
...
✔ Test run with 203 tests in 21 suites passed after 19.088 seconds.
```
```
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes#252 from dongjoon-hyun/SPARK-54043.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
0 commit comments