Repository: spark Updated Branches: refs/heads/branch-1.4 a475cbc97 -> f8f23c48a
[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 (cherry picked from commit eb4632f282d070e1dfd5ffed968fa212896137da) Signed-off-by: Yin Huai <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f8f23c48 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f8f23c48 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f8f23c48 Branch: refs/heads/branch-1.4 Commit: f8f23c48a2849da405926579f7198c48be6bdff9 Parents: a475cbc 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:39 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/f8f23c48/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]
