aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShixiong Zhu <shixiong@databricks.com>2017-04-19 18:58:14 -0700
committerShixiong Zhu <shixiong@databricks.com>2017-04-19 18:58:14 -0700
commit39e303a8b6db642c26dbc26ba92e87680f50e4da (patch)
tree7edc19cf9cd97ecae1da349d4777dd581568431c
parent63824b2c8e010ba03013be498def236c654d4fed (diff)
downloadspark-39e303a8b6db642c26dbc26ba92e87680f50e4da.tar.gz
spark-39e303a8b6db642c26dbc26ba92e87680f50e4da.tar.bz2
spark-39e303a8b6db642c26dbc26ba92e87680f50e4da.zip
[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 <shixiong@databricks.com> Closes #17691 from zsxwing/fix-error-message.
-rw-r--r--sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationChecker.scala2
1 files changed, 1 insertions, 1 deletions
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 3f76f26dbe..6ab4153bac 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 =>