Skip to content

Commit

Permalink
fix clang-tiny
Browse files Browse the repository at this point in the history
  • Loading branch information
loudongfeng committed Mar 20, 2024
1 parent 8ff21d7 commit 96e9043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Processors/Transforms/MergeJoinTransform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ MergeJoinAlgorithm::MergeJoinAlgorithm(
left_to_right_key_remap[left_idx] = right_idx;
}

auto smjPtr = typeid_cast<const FullSortingMergeJoin *>(table_join.get());
const auto *smjPtr = typeid_cast<const FullSortingMergeJoin *>(table_join.get());
if (smjPtr)
{
null_direction_hint = smjPtr->getNullDirection();
Expand Down

0 comments on commit 96e9043

Please sign in to comment.