This is an automated email from the ASF dual-hosted git repository.
hongze pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 526acc351 [CORE] HiveTableScanExecTransformer should make SparkSession
as transient (#6410)
526acc351 is described below
commit 526acc3514801fd18247442d4cc71573bf73db13
Author: Kaifei Yi <[email protected]>
AuthorDate: Mon Jul 15 11:40:53 2024 +0800
[CORE] HiveTableScanExecTransformer should make SparkSession as transient
(#6410)
---
.../scala/org/apache/spark/sql/hive/HiveTableScanExecTransformer.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/gluten-core/src/main/scala/org/apache/spark/sql/hive/HiveTableScanExecTransformer.scala
b/gluten-core/src/main/scala/org/apache/spark/sql/hive/HiveTableScanExecTransformer.scala
index 2a3ba79eb..8133f1d42 100644
---
a/gluten-core/src/main/scala/org/apache/spark/sql/hive/HiveTableScanExecTransformer.scala
+++
b/gluten-core/src/main/scala/org/apache/spark/sql/hive/HiveTableScanExecTransformer.scala
@@ -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 {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]