Return-Path: X-Original-To: apmail-spark-commits-archive@minotaur.apache.org Delivered-To: apmail-spark-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7006018461 for ; Mon, 18 May 2015 22:24:35 +0000 (UTC) Received: (qmail 90781 invoked by uid 500); 18 May 2015 22:24:35 -0000 Delivered-To: apmail-spark-commits-archive@spark.apache.org Received: (qmail 90742 invoked by uid 500); 18 May 2015 22:24:35 -0000 Mailing-List: contact commits-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@spark.apache.org Received: (qmail 90733 invoked by uid 99); 18 May 2015 22:24:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 May 2015 22:24:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 229DDE0913; Mon, 18 May 2015 22:24:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: yhuai@apache.org To: commits@spark.apache.org Message-Id: <08e1507fe39642d397295f782443de3a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: spark git commit: [SQL] Fix serializability of ORC table scan Date: Mon, 18 May 2015 22:24:35 +0000 (UTC) Repository: spark Updated Branches: refs/heads/master 6525fc0ab -> eb4632f28 [SQL] Fix serializability of ORC table scan A follow-up to #6244. Author: Michael Armbrust 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 Authored: Mon May 18 15:24:31 2015 -0700 Committer: Yin Huai 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