-
Notifications
You must be signed in to change notification settings - Fork 206
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
refactor: use enum instead of version for encoding format in pb #655
Conversation
e21f7e6
to
49eb4c5
Compare
Codecov Report
@@ Coverage Diff @@
## main #655 +/- ##
==========================================
+ Coverage 66.84% 66.94% +0.10%
==========================================
Files 283 283
Lines 44006 43969 -37
==========================================
+ Hits 29414 29437 +23
+ Misses 14592 14532 -60
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…he#655) * refactor: use enum instead of version for encoding format in pb * fix ut * update package fs_extra to resolve incompact issue reported by cargo * remove wrong exmaple config * fix integration test * rename 'type' of cluster deployment to 'mode' * rename wal_storage to wal
Which issue does this PR close?
Closes #
Rationale for this change
Currently,
version
number has been introduced to record the encoding format in the protobuf, and this is very messy compared withenum
(one_of
in the protobuf).What changes are included in this PR?
Adapt to apache/incubator-horaedb-proto#51
Are there any user-facing changes?
None.
How does this change test
Existing tests.