Skip to content

Commit a31d75b

Browse files
committed
Fix a missing space in UnsupportedOperationChecker error message
1 parent e5fee3e commit a31d75b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationChecker.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ object UnsupportedOperationChecker {
267267
throwError("Limits are not supported on streaming DataFrames/Datasets")
268268

269269
case Sort(_, _, _) if !containsCompleteData(subPlan) =>
270-
throwError("Sorting is not supported on streaming DataFrames/Datasets, unless it is on" +
270+
throwError("Sorting is not supported on streaming DataFrames/Datasets, unless it is on " +
271271
"aggregated DataFrame/Dataset in Complete output mode")
272272

273273
case Sample(_, _, _, _, child) if child.isStreaming =>

0 commit comments

Comments
 (0)