Repository: spark Updated Branches: refs/heads/master 8115e6b26 -> 65f75db61
[MINOR][SQL] remove Redundant semicolons ## What changes were proposed in this pull request? remove Redundant semicolons in SortMergeJoinExecï¼ thanks. ## How was this patch tested? N/A Closes #22695 from heary-cao/RedundantSemicolons. Authored-by: caoxuewen <[email protected]> Signed-off-by: Sean Owen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/65f75db6 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/65f75db6 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/65f75db6 Branch: refs/heads/master Commit: 65f75db61176d711a120f9c50c617844811274dc Parents: 8115e6b Author: caoxuewen <[email protected]> Authored: Thu Oct 11 14:03:41 2018 -0700 Committer: Sean Owen <[email protected]> Committed: Thu Oct 11 14:03:41 2018 -0700 ---------------------------------------------------------------------- .../org/apache/spark/sql/execution/joins/SortMergeJoinExec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/65f75db6/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoinExec.scala ---------------------------------------------------------------------- diff --git a/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoinExec.scala b/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoinExec.scala index f4b9d13..d7d3f6d 100644 --- a/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoinExec.scala +++ b/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoinExec.scala @@ -494,7 +494,7 @@ case class SortMergeJoinExec( | $leftRow = null; | } else { | $matches.add((UnsafeRow) $rightRow); - | $rightRow = null;; + | $rightRow = null; | } | } while ($leftRow != null); | } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
