Repository: spark Updated Branches: refs/heads/master 6525fc0ab -> eb4632f28
[SQL] Fix serializability of ORC table scan A follow-up to #6244. Author: Michael Armbrust <[email protected]> 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 <[email protected]> Authored: Mon May 18 15:24:31 2015 -0700 Committer: Yin Huai <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
