xkrogen commented on a change in pull request #31623:
URL: https://github.com/apache/spark/pull/31623#discussion_r581209555
##########
File path:
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala
##########
@@ -1224,7 +1224,10 @@ class HiveQuerySuite extends HiveComparisonTest with
SQLTestUtils with BeforeAnd
test("SPARK-33084: Add jar support Ivy URI in SQL") {
val testData = TestHive.getHiveFile("data/files/sample.json").toURI
withTable("t") {
- sql(s"ADD JAR
ivy://org.apache.hive.hcatalog:hive-hcatalog-core:$hiveVersion")
+ // exclude org.pentaho:pentaho-aggdesigner-algorithm as this transitive
dependency does
+ // not exist on mavencentral and hence cannot be found in the test
environment
+ sql(s"ADD JAR
ivy://org.apache.hive.hcatalog:hive-hcatalog-core:$hiveVersion" +
+ "?exclude=org.pentaho:pentaho-aggdesigner-algorithm")
Review comment:
This is odd. Any idea why `hive-hcatalog-core` has a dependency on a
package that doesn't exist?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]