You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by zs...@apache.org on 2017/04/20 01:58:16 UTC

spark git commit: [MINOR][SS] Fix a missing space in UnsupportedOperationChecker error message

Repository: spark
Updated Branches:
  refs/heads/master 63824b2c8 -> 39e303a8b


[MINOR][SS] Fix a missing space in UnsupportedOperationChecker error message

## What changes were proposed in this pull request?

Also went through the same file to ensure other string concatenation are correct.

## How was this patch tested?

Jenkins

Author: Shixiong Zhu <sh...@databricks.com>

Closes #17691 from zsxwing/fix-error-message.


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

Branch: refs/heads/master
Commit: 39e303a8b6db642c26dbc26ba92e87680f50e4da
Parents: 63824b2
Author: Shixiong Zhu <sh...@databricks.com>
Authored: Wed Apr 19 18:58:14 2017 -0700
Committer: Shixiong Zhu <sh...@databricks.com>
Committed: Wed Apr 19 18:58:14 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/spark/blob/39e303a8/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationChecker.scala
----------------------------------------------------------------------
diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationChecker.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationChecker.scala
index 3f76f26..6ab4153 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationChecker.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationChecker.scala
@@ -267,7 +267,7 @@ object UnsupportedOperationChecker {
           throwError("Limits are not supported on streaming DataFrames/Datasets")
 
         case Sort(_, _, _) if !containsCompleteData(subPlan) =>
-          throwError("Sorting is not supported on streaming DataFrames/Datasets, unless it is on" +
+          throwError("Sorting is not supported on streaming DataFrames/Datasets, unless it is on " +
             "aggregated DataFrame/Dataset in Complete output mode")
 
         case Sample(_, _, _, _, child) if child.isStreaming =>


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