Skip to content

Commit 340617a

Browse files
committed
[SPARK-52119] Update README.md and integration test with Apache Spark 4.0.0 RC6
### What changes were proposed in this pull request? This PR aims to update `README.md` and integration test with `Apache Spark 4.0.0 RC6`. ### Why are the changes needed? To be ready for the official Apache Spark 4.0.0. ### 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 #143 from dongjoon-hyun/SPARK-52058. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 0183dfb commit 340617a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
swift-version: "6.1"
107107
- name: Test
108108
run: |
109-
curl -LO https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc5-bin/spark-4.0.0-bin-hadoop3.tgz
109+
curl -LO https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc6-bin/spark-4.0.0-bin-hadoop3.tgz
110110
tar xvfz spark-4.0.0-bin-hadoop3.tgz
111111
mv spark-4.0.0-bin-hadoop3 /tmp/spark
112112
cd /tmp/spark/sbin
@@ -125,7 +125,7 @@ jobs:
125125
swift-version: "6.1"
126126
- name: Test
127127
run: |
128-
curl -LO https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc5-bin/spark-4.0.0-bin-hadoop3.tgz
128+
curl -LO https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc6-bin/spark-4.0.0-bin-hadoop3.tgz
129129
tar xvfz spark-4.0.0-bin-hadoop3.tgz
130130
mv spark-4.0.0-bin-hadoop3 /tmp/spark
131131
cd /tmp/spark/sbin

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
This is an experimental Swift library to show how to connect to a remote Apache Spark Connect Server and run SQL statements to manipulate remote data.
88

9-
So far, this library project is tracking the upstream changes like the [Apache Spark](https://spark.apache.org) 4.0.0 RC5 release and [Apache Arrow](https://arrow.apache.org) project's Swift-support.
9+
So far, this library project is tracking the upstream changes like the [Apache Spark](https://spark.apache.org) 4.0.0 RC6 release and [Apache Arrow](https://arrow.apache.org) project's Swift-support.
1010

1111
## Requirement
1212

13-
- [Apache Spark 4.0.0 RC5 (April 2025)](https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc5-bin/)
13+
- [Apache Spark 4.0.0 RC6 (May 2025)](https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc6-bin/)
1414
- [Swift 6.0 (2024) or 6.1 (2025)](https://swift.org)
1515
- [gRPC Swift 2.2 (May 2025)](https://github.com/grpc/grpc-swift/releases/tag/2.2.0)
1616
- [gRPC Swift Protobuf 1.2 (April 2025)](https://github.com/grpc/grpc-swift-protobuf/releases/tag/1.2.0)
@@ -180,7 +180,7 @@ spark-sql (default)> DROP DATABASE db1 CASCADE;
180180
spark-sql (default)> exit;
181181
```
182182
183-
Apache Spark 4 supports [SQL Pipe Syntax](https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc5-docs/_site/sql-pipe-syntax.html).
183+
Apache Spark 4 supports [SQL Pipe Syntax](https://dist.apache.org/repos/dist/dev/spark/v4.0.0-rc6-docs/_site/sql-pipe-syntax.html).
184184
185185
```
186186
$ swift run

0 commit comments

Comments
 (0)