fix(hgraph): refactor label remap handling in SetImmutable#1607
Conversation
Signed-off-by: baoyuan <129934985+misaka0714@users.noreply.github.com>
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses an issue in the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request refactors the handling of label_remap_ in HGraph. The changes prevent label_remap_ from being cleared when an index is set to immutable, and the deserialization logic is updated to be consistent with this change. I have one suggestion regarding const-correctness to improve code clarity.
| if (not this->immutable_) { | ||
| this->label_table_->label_remap_.emplace(key, value); | ||
| } | ||
| this->label_table_->label_remap_.emplace(key, value); |
There was a problem hiding this comment.
The function deserialize_label_info is marked as const, but this line modifies this->label_table_->label_remap_. This is misleading as the function has side effects on the object's logical state, which violates the principle of const-correctness. To improve clarity and maintainability, consider removing the const specifier from this function's declaration in hgraph.h and its definition.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## 0.16 #1607 +/- ##
==========================================
+ Coverage 92.21% 92.27% +0.05%
==========================================
Files 295 295
Lines 15677 15681 +4
==========================================
+ Hits 14457 14469 +12
+ Misses 1220 1212 -8
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
cp #1550 to 0.16
link #1555