Skip to content

Commit aadf866

Browse files
committed
[KYUUBI #7213] Enable test of Spark lineage plugin for Spark 4.0
### Why are the changes needed? Expand test coverage for Spark 4.0 ### How was this patch tested? Pass GHA, also verified locally ``` $ build/mvn -pl :kyuubi-spark-lineage_2.13 -Pscala-2.13 -Pspark-4.0 -am clean install -DskipTests ... $ build/mvn -pl :kyuubi-spark-lineage_2.13 -Pscala-2.13 -Pspark-4.0 test ... Run completed in 25 seconds, 133 milliseconds. Total number of tests run: 75 Suites: completed 5, aborted 0 Tests: succeeded 75, failed 0, canceled 0, ignored 0, pending 0 All tests passed. [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 34.320 s [INFO] Finished at: 2025-09-22T13:47:18+08:00 [INFO] ------------------------------------------------------------------------ ``` ### Was this patch authored or co-authored using generative AI tooling? No. Closes #7213 from pan3793/lineage-4.0. Closes #7213 60a7143 [Cheng Pan] Enable test of Spark lineage plugin for Spark 4.0 Authored-by: Cheng Pan <[email protected]> Signed-off-by: Cheng Pan <[email protected]>
1 parent b992623 commit aadf866

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

dev/kyuubi-codecov/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,11 @@
173173
<artifactId>kyuubi-spark-authz_${scala.binary.version}</artifactId>
174174
<version>${project.version}</version>
175175
</dependency>
176+
<dependency>
177+
<groupId>org.apache.kyuubi</groupId>
178+
<artifactId>kyuubi-spark-lineage_${scala.binary.version}</artifactId>
179+
<version>${project.version}</version>
180+
</dependency>
176181
</dependencies>
177182
</profile>
178183
<profile>
@@ -193,6 +198,11 @@
193198
<artifactId>kyuubi-spark-authz_${scala.binary.version}</artifactId>
194199
<version>${project.version}</version>
195200
</dependency>
201+
<dependency>
202+
<groupId>org.apache.kyuubi</groupId>
203+
<artifactId>kyuubi-spark-lineage_${scala.binary.version}</artifactId>
204+
<version>${project.version}</version>
205+
</dependency>
196206
</dependencies>
197207
</profile>
198208
<profile>
@@ -213,6 +223,11 @@
213223
<artifactId>kyuubi-spark-authz_${scala.binary.version}</artifactId>
214224
<version>${project.version}</version>
215225
</dependency>
226+
<dependency>
227+
<groupId>org.apache.kyuubi</groupId>
228+
<artifactId>kyuubi-spark-lineage_${scala.binary.version}</artifactId>
229+
<version>${project.version}</version>
230+
</dependency>
216231
</dependencies>
217232
</profile>
218233
<profile>
@@ -228,6 +243,12 @@
228243
<artifactId>kyuubi-spark-connector-hive_${scala.binary.version}</artifactId>
229244
<version>${project.version}</version>
230245
</dependency>
246+
<!-- TODO: support authz -->
247+
<dependency>
248+
<groupId>org.apache.kyuubi</groupId>
249+
<artifactId>kyuubi-spark-lineage_${scala.binary.version}</artifactId>
250+
<version>${project.version}</version>
251+
</dependency>
231252
</dependencies>
232253
</profile>
233254
<profile>

extensions/spark/kyuubi-spark-lineage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ build/mvn clean package -DskipTests -pl :kyuubi-spark-lineage_2.12 -am -Dspark.v
3333

3434
`-Dspark.version=`
3535

36-
- [x] master
36+
- [x] 4.0.x
3737
- [x] 3.5.x (default)
3838
- [x] 3.4.x
3939
- [x] 3.3.x

0 commit comments

Comments
 (0)