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.
1 parent db44a30 commit 93d0f64Copy full SHA for 93d0f64
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveMetastoreCatalog.scala
@@ -265,9 +265,9 @@ private[hive] case class MetastoreRelation
265
// org.apache.hadoop.hive.ql.metadata.Partition will cause a NotSerializableException
266
// which indicates the SerDe we used is not Serializable.
267
268
- @transient lazy val hiveQlTable = new Table(table)
+ @transient val hiveQlTable = new Table(table)
269
270
- def hiveQlPartitions = partitions.map { p =>
+ @transient val hiveQlPartitions = partitions.map { p =>
271
new Partition(hiveQlTable, p)
272
}
273
0 commit comments