File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
main/scala/org/apache/spark/sql/hive/client
test/scala/org/apache/spark/sql/hive Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,6 @@ private[hive] class IsolatedClientLoader(
182
182
name.startsWith(" org.slf4j" ) ||
183
183
name.startsWith(" org.apache.log4j" ) || // log4j1.x
184
184
name.startsWith(" org.apache.logging.log4j" ) || // log4j2
185
- name.startsWith(" org.apache.derby." ) ||
186
185
name.startsWith(" org.apache.spark." ) ||
187
186
(sharesHadoopClasses && isHadoopClass) ||
188
187
name.startsWith(" scala." ) ||
Original file line number Diff line number Diff line change @@ -113,10 +113,4 @@ class HiveExternalCatalogSuite extends ExternalCatalogSuite {
113
113
catalog.createDatabase(newDb(" dbWithNullDesc" ).copy(description = null ), ignoreIfExists = false )
114
114
assert(catalog.getDatabase(" dbWithNullDesc" ).description == " " )
115
115
}
116
-
117
- test(" SPARK-23831: Add org.apache.derby to IsolatedClientLoader" ) {
118
- val client1 = HiveUtils .newClientForMetadata(new SparkConf , new Configuration )
119
- val client2 = HiveUtils .newClientForMetadata(new SparkConf , new Configuration )
120
- assert(! client1.equals(client2))
121
- }
122
116
}
You can’t perform that action at this time.
0 commit comments