dongjoon-hyun commented on code in PR #45154:
URL: https://github.com/apache/spark/pull/45154#discussion_r1494847462
##########
project/SparkBuild.scala:
##########
@@ -249,7 +249,9 @@ object SparkBuild extends PomBuild {
// SPARK-45627 `enum`, `export` and `given` will become keywords in
Scala 3,
// so they are prohibited from being used as variable names in Scala
2.13 to
// reduce the cost of migration in subsequent versions.
- "-Wconf:cat=deprecation&msg=it will become a keyword in Scala 3:e"
+ "-Wconf:cat=deprecation&msg=it will become a keyword in Scala 3:e",
+ // SPARK-46938 to prevent enum scan on pmml-model, under spark-mllib
module.
+ "-Wconf:cat=other&site=org.dmg.pmml.*:w"
Review Comment:
Do we need this? It seems that this PR only adds the following.
```
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]