wangyum opened a new pull request, #9821:
URL: https://github.com/apache/incubator-gluten/pull/9821
## What changes were proposed in this pull request?
To avoid class conflict issue if add gluten jar as a dependency of the Spark
project. For example:
```xml
<dependency>
<groupId>org.apache.gluten</groupId>
<artifactId>gluten-velox-bundle</artifactId>
<version>1.5.0-SNAPSHOT</version>
<scope>system</scope>
<systemPath>/Users/yumwang/Downloads/gluten-velox-bundle-spark3.5_2.12-linux_amd64-1.5.0-SNAPSHOT.jar</systemPath>
</dependency>
```
Error message:
```
/Users/yumwang/spark/sql/core/src/main/scala/org/apache/spark/sql/internal/VariableSubstitution.scala:38:24
overloaded method constructor ConfigReader with alternatives:
(conf:
java.util.Map[String,String])org.apache.spark.internal.config.ConfigReader <and>
(conf:
org.apache.spark.internal.config.ConfigProvider)org.apache.spark.internal.config.ConfigReader
cannot be applied to (org.apache.spark.sql.internal.ConfigProvider)
private val reader = new ConfigReader(provider)
```
## How was this patch tested?
Manual tests.
--
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]