Skip to content

Commit 6f7b8f6

Browse files
committed
Temporary fix MIMA checker. Since we now assemble Spark jar with Hive, we don't want to check the interfaces of all of our hive dependencies
1 parent 3ef074a commit 6f7b8f6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tools/src/main/scala/org/apache/spark/tools/GenerateMIMAIgnore.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ object GenerateMIMAIgnore {
9999
// Heuristic to remove JVM classes that do not correspond to user-facing classes in Scala
100100
name.contains("anon") ||
101101
name.endsWith("$class") ||
102-
name.contains("$sp")
102+
name.contains("$sp") ||
103+
name.contains("hive") ||
104+
name.contains("Hive")
103105
}
104106

105107
/**

0 commit comments

Comments
 (0)