This is an automated email from the ASF dual-hosted git repository.
jakevin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new 916ec5d50 minor: remove unnecessary `continue` (#5200)
916ec5d50 is described below
commit 916ec5d5068eb2119c2e04d09d124ee531995428
Author: xyz <[email protected]>
AuthorDate: Tue Feb 7 00:54:54 2023 +0800
minor: remove unnecessary `continue` (#5200)
---
datafusion/core/src/physical_plan/joins/sort_merge_join.rs | 1 -
1 file changed, 1 deletion(-)
diff --git a/datafusion/core/src/physical_plan/joins/sort_merge_join.rs
b/datafusion/core/src/physical_plan/joins/sort_merge_join.rs
index edcd4bfa8..88667b692 100644
--- a/datafusion/core/src/physical_plan/joins/sort_merge_join.rs
+++ b/datafusion/core/src/physical_plan/joins/sort_merge_join.rs
@@ -724,7 +724,6 @@ impl SMJStream {
} else {
self.streamed_state = StreamedState::Polling;
}
- continue;
}
StreamedState::Polling => match
self.streamed.poll_next_unpin(cx)? {
Poll::Pending => {