Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaRise committed May 23, 2022
1 parent fb4b83f commit 2a40af5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbms/src/Flash/Coprocessor/JoinInterpreterHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ std::tuple<ExpressionActionsPtr, String, String> doGenJoinOtherConditionAction(
}
} // namespace

TiFlashJoin::TiFlashJoin(const tipb::Join & join_)
TiFlashJoin::TiFlashJoin(const tipb::Join & join_) // NOLINT(cppcoreguidelines-pro-type-member-init)
: join(join_)
, join_key_types(getJoinKeyTypes(join_))
, join_key_collators(getJoinKeyCollators(join_, join_key_types))
Expand Down
2 changes: 1 addition & 1 deletion dbms/src/Flash/Coprocessor/JoinInterpreterHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct TiFlashJoin
const tipb::Join & join;

ASTTableJoin::Kind kind;
size_t build_side_index;
size_t build_side_index = 0;

DataTypes join_key_types;
TiDB::TiDBCollators join_key_collators;
Expand Down

0 comments on commit 2a40af5

Please sign in to comment.