Skip to content

Commit

Permalink
HiveTableScanExecTransformer should make SparkSession as transient
Browse files Browse the repository at this point in the history
  • Loading branch information
yikaifei committed Jul 11, 2024
1 parent 7aea816 commit 64d702d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import java.net.URI
case class HiveTableScanExecTransformer(
requestedAttributes: Seq[Attribute],
relation: HiveTableRelation,
partitionPruningPred: Seq[Expression])(session: SparkSession)
partitionPruningPred: Seq[Expression])(@transient session: SparkSession)
extends AbstractHiveTableScanExec(requestedAttributes, relation, partitionPruningPred)(session)
with BasicScanExecTransformer {

Expand Down

0 comments on commit 64d702d

Please sign in to comment.