You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by yh...@apache.org on 2015/05/19 00:24:35 UTC

spark git commit: [SQL] Fix serializability of ORC table scan

Repository: spark
Updated Branches:
  refs/heads/master 6525fc0ab -> eb4632f28


[SQL] Fix serializability of ORC table scan

A follow-up to #6244.

Author: Michael Armbrust <mi...@databricks.com>

Closes #6247 from marmbrus/fixOrcTests and squashes the following commits:

e39ee1b [Michael Armbrust] [SQL] Fix serializability of ORC table scan


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/eb4632f2
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/eb4632f2
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/eb4632f2

Branch: refs/heads/master
Commit: eb4632f282d070e1dfd5ffed968fa212896137da
Parents: 6525fc0
Author: Michael Armbrust <mi...@databricks.com>
Authored: Mon May 18 15:24:31 2015 -0700
Committer: Yin Huai <yh...@databricks.com>
Committed: Mon May 18 15:24:31 2015 -0700

----------------------------------------------------------------------
 .../src/main/scala/org/apache/spark/sql/hive/orc/OrcRelation.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/eb4632f2/sql/hive/src/main/scala/org/apache/spark/sql/hive/orc/OrcRelation.scala
----------------------------------------------------------------------
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 e10d3a0..58b97ad 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 {
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org