Skip to content

Commit

Permalink
fix merge join return Incorrect answer with some env (#10430)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #10430

Reviewed By: Yuhta

Differential Revision: D59872462

Pulled By: kevinwilfong

fbshipit-source-id: b0a211d89534c5f117b588fb2da38a2eda83afed
  • Loading branch information
hn5092 authored and facebook-github-bot committed Jul 18, 2024
1 parent 9c2ab9b commit 7fc041c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/exec/MergeSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class MergeJoinSource {

private:
struct State {
bool atEnd;
bool atEnd = false;
RowVectorPtr data;
};

Expand Down

0 comments on commit 7fc041c

Please sign in to comment.