Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Storages: Change the element type of use_pack from bool to RSResult in DMFilePackFilter #9145

Merged
merged 7 commits into from
Jun 13, 2024
Prev Previous commit
Next Next commit
Update dbms/src/Storages/DeltaMerge/Index/RSResult.h
Co-authored-by: JaySon <tshent@qq.com>
  • Loading branch information
JinheLin and JaySon-Huang authored Jun 13, 2024
commit 90d97bebf4fecdde826ea0e806f94a3df79fb2b1
2 changes: 1 addition & 1 deletion dbms/src/Storages/DeltaMerge/Index/RSResult.h
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ inline RSResult operator&&(RSResult v0, RSResult v1)
return Some;
}

inline bool isUse(RSResult res) noexcept
ALWAYS_INLINE inline bool isUse(RSResult res) noexcept
{
return res != RSResult::None;
}