-
Notifications
You must be signed in to change notification settings - Fork 409
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
Fix randomly build failed because mpp.pb.h not found #4331
Conversation
Signed-off-by: guo-shaoge <[email protected]>
Signed-off-by: guo-shaoge <[email protected]>
Signed-off-by: guo-shaoge <[email protected]>
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
/run-check-issue-triage-complete |
@@ -15,7 +15,7 @@ | |||
#include <Common/MyTime.h> | |||
#include <Common/StringUtils/StringRefUtils.h> | |||
#include <Common/StringUtils/StringUtils.h> | |||
#include <Functions/FunctionsDateTime.h> | |||
#include <IO/WriteHelpers.h> |
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.
For DB::toString()
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
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
/merge |
@guo-shaoge: It seems you want to merge this PR, I will help you trigger all the tests: /run-all-tests You only need to trigger If you have any questions about the PR merge process, please refer to pr process. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
This pull request has been accepted and is ready to merge. Commit hash: a3bc0c5
|
Coverage for changed files
Coverage summary
full coverage report (for internal network access only) |
In response to a cherrypick label: cannot checkout |
Already in release-6.0, no need to cherry pick. |
Signed-off-by: guo-shaoge [email protected]
What problem does this PR solve?
Issue Number: close #4318
Problem Summary: As issue said, got compilation error. Introduced by #4183.
clickhouse_common_io
needmpp.pb.h
, but doesn't addkvproto
as its dependency.How to reproduce this problem:
cmake .. -DCMAKE_BUILD_TYPE=RELWITHDEBINFO -DENABLE_TESTING=OFF -DENABLE_TESTS=OFF -Wno-dev -DUSE_CCACHE=OFF -DRUN_HAVE_STD_REGEX=0 -GNinja
. Make sure use ninja, I cannot reproduce with makeninja tiflash -j40
. Make sure use high job concurrency.What is changed and how it works?
Remove the dependency of MyTime.cpp on FunctionsDatetime.h, which is more reasonable. So clickhouse_common_io will not depend on kvproto.
Check List
Tests
Side effects
Documentation
Release note