You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by li...@apache.org on 2017/03/24 16:56:10 UTC

spark git commit: [SQL][MINOR] Fix for typo in Analyzer

Repository: spark
Updated Branches:
  refs/heads/master d9f4ce694 -> 9299d071f


[SQL][MINOR] Fix for typo in Analyzer

## What changes were proposed in this pull request?

Fix for typo in Analyzer

## How was this patch tested?

local build

Author: Jacek Laskowski <ja...@japila.pl>

Closes #17409 from jaceklaskowski/analyzer-typo.


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

Branch: refs/heads/master
Commit: 9299d071f95798e33b18c08d3c75bb26f88b266b
Parents: d9f4ce6
Author: Jacek Laskowski <ja...@japila.pl>
Authored: Fri Mar 24 09:56:05 2017 -0700
Committer: Xiao Li <ga...@gmail.com>
Committed: Fri Mar 24 09:56:05 2017 -0700

----------------------------------------------------------------------
 .../scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/9299d071/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
----------------------------------------------------------------------
diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
index 036ed06..1b3a53c 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
@@ -2502,7 +2502,7 @@ object TimeWindowing extends Rule[LogicalPlan] {
         substitutedPlan.withNewChildren(expandedPlan :: Nil)
       } else if (windowExpressions.size > 1) {
         p.failAnalysis("Multiple time window expressions would result in a cartesian product " +
-          "of rows, therefore they are not currently not supported.")
+          "of rows, therefore they are currently not supported.")
       } else {
         p // Return unchanged. Analyzer will throw exception later
       }


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