Repository: spark Updated Branches: refs/heads/master e6e37701f -> 9d9ca91fe
[SQL]Small bug in unresolved.scala name should throw exception with name instead of exprId. Author: Liquan Pei <[email protected]> Closes #2758 from Ishiihara/SparkSQL-bug and squashes the following commits: aa36a3b [Liquan Pei] small bug Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/9d9ca91f Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/9d9ca91f Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/9d9ca91f Branch: refs/heads/master Commit: 9d9ca91fef70eca6fc576be9c99aed5d8ce6e68b Parents: e6e3770 Author: Liquan Pei <[email protected]> Authored: Mon Oct 13 13:49:11 2014 -0700 Committer: Michael Armbrust <[email protected]> Committed: Mon Oct 13 13:49:11 2014 -0700 ---------------------------------------------------------------------- .../scala/org/apache/spark/sql/catalyst/analysis/unresolved.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/9d9ca91f/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/unresolved.scala ---------------------------------------------------------------------- diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/unresolved.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/unresolved.scala index 67570a6..77d84e1 100644 --- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/unresolved.scala +++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/unresolved.scala @@ -88,7 +88,7 @@ case class Star( mapFunction: Attribute => Expression = identity[Attribute]) extends Attribute with trees.LeafNode[Expression] { - override def name = throw new UnresolvedException(this, "exprId") + override def name = throw new UnresolvedException(this, "name") override def exprId = throw new UnresolvedException(this, "exprId") override def dataType = throw new UnresolvedException(this, "dataType") override def nullable = throw new UnresolvedException(this, "nullable") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
