aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMichael Armbrust <michael@databricks.com>2015-05-18 15:24:31 -0700
committerYin Huai <yhuai@databricks.com>2015-05-18 15:24:31 -0700
commiteb4632f282d070e1dfd5ffed968fa212896137da (patch)
tree2b23ff4f695cf9eeffee2db7e0662f218d1c895f /sql
parent6525fc0ab0c953c3346d16db0334aaf01ade7ed5 (diff)
downloadspark-eb4632f282d070e1dfd5ffed968fa212896137da.tar.gz
spark-eb4632f282d070e1dfd5ffed968fa212896137da.tar.bz2
spark-eb4632f282d070e1dfd5ffed968fa212896137da.zip
[SQL] Fix serializability of ORC table scan
A follow-up to #6244. Author: Michael Armbrust <michael@databricks.com> Closes #6247 from marmbrus/fixOrcTests and squashes the following commits: e39ee1b [Michael Armbrust] [SQL] Fix serializability of ORC table scan
Diffstat (limited to 'sql')
-rw-r--r--sql/hive/src/main/scala/org/apache/spark/sql/hive/orc/OrcRelation.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/orc/OrcRelation.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/orc/OrcRelation.scala
index e10d3a0b68..58b97adb46 100644
--- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/orc/OrcRelation.scala
+++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/orc/OrcRelation.scala
@@ -195,7 +195,7 @@ private[orc] case class OrcTableScan(
attributes: Seq[Attribute],
@transient relation: OrcRelation,
filters: Array[Filter],
- inputPaths: Array[FileStatus])
+ @transient inputPaths: Array[FileStatus])
extends Logging
with HiveInspectors {