We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6fc32f + e4a9b0b commit 7667030Copy full SHA for 7667030
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala
@@ -67,7 +67,7 @@ private[hive] class HiveMetastoreCatalog(hive: HiveContext) extends Catalog with
67
val cacheLoader = new CacheLoader[QualifiedTableName, LogicalPlan]() {
68
override def load(in: QualifiedTableName): LogicalPlan = {
69
logDebug(s"Creating new cached data source for $in")
70
- val table = synchronized {
+ val table = HiveMetastoreCatalog.this.synchronized {
71
client.getTable(in.database, in.name)
72
}
73
val userSpecifiedSchema =
0 commit comments