Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Dec 19, 2024
1 parent 5cca294 commit 09e90f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ struct AggregateFunctionCollectListData<StringRef, HasLimit> {

data->insert_range_from(
*rhs.data, 0,
std::min(assert_cast<size_t, TypeCheckOnRelease::DISABLE>(max_size - size()),
std::min(assert_cast<size_t, TypeCheckOnRelease::DISABLE>(static_cast<size_t>(max_size - size())),
rhs.size()));
} else {
data->insert_range_from(*rhs.data, 0, rhs.size());
Expand Down

0 comments on commit 09e90f0

Please sign in to comment.