aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src
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:39 -0700
commitf8f23c48a2849da405926579f7198c48be6bdff9 (patch)
tree1ad48ec3a43efa6a7417bc3f26f4d4e1df21db03 /sql/hive/src
parenta475cbc978847bbd8b09b3bd1a799291ae9e9059 (diff)
downloadspark-f8f23c48a2849da405926579f7198c48be6bdff9.tar.gz
spark-f8f23c48a2849da405926579f7198c48be6bdff9.tar.bz2
spark-f8f23c48a2849da405926579f7198c48be6bdff9.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 (cherry picked from commit eb4632f282d070e1dfd5ffed968fa212896137da) Signed-off-by: Yin Huai <yhuai@databricks.com>
Diffstat (limited to 'sql/hive/src')
-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 {