Skip to content

Commit

Permalink
fix uninit read in DqRewriteEquiJoin (#7362)
Browse files Browse the repository at this point in the history
  • Loading branch information
uzhastik authored Aug 2, 2024
1 parent 4c6a56a commit a334f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/library/yql/dq/opt/dq_opt_join.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ bool CheckJoinColumns(const TExprBase& node) {
}

TExprBase DqRewriteEquiJoin(const TExprBase& node, EHashJoinMode mode, bool useCBO, TExprContext& ctx, const TTypeAnnotationContext& typeCtx) {
int dummyJoinCounter;
int dummyJoinCounter = 0;
return DqRewriteEquiJoin(node, mode, useCBO, ctx, typeCtx, dummyJoinCounter);
}

Expand Down

0 comments on commit a334f73

Please sign in to comment.