-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
mysql: move colldump to its own standalone repository #15166
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Vicent Marti <vmg@strn.cat>
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
vitess-bot
bot
added
NeedsBackportReason
If backport labels have been applied to a PR, a justification is required
NeedsDescriptionUpdate
The description is not clear or comprehensive enough, and needs work
NeedsIssue
A linked issue is missing for this Pull Request
NeedsWebsiteDocsUpdate
What it says
labels
Feb 7, 2024
vmg
added
Component: Build/CI
Type: CI/Build
and removed
NeedsDescriptionUpdate
The description is not clear or comprehensive enough, and needs work
NeedsWebsiteDocsUpdate
What it says
NeedsIssue
A linked issue is missing for this Pull Request
NeedsBackportReason
If backport labels have been applied to a PR, a justification is required
labels
Feb 7, 2024
systay
approved these changes
Feb 7, 2024
systay
approved these changes
Feb 7, 2024
systay
approved these changes
Feb 7, 2024
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #15166 +/- ##
===========================================
+ Coverage 47.29% 70.65% +23.35%
===========================================
Files 1137 1377 +240
Lines 238684 182801 -55883
===========================================
+ Hits 112895 129152 +16257
+ Misses 117168 53649 -63519
+ Partials 8621 0 -8621 ☔ View full report in Codecov by Sentry. |
shlomi-noach
approved these changes
Feb 8, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
We have received a friendly email from the CNCF with an automated license scanner pass that raised concerns about the GPLv2 license in
colldump.cc
. Just to clarify, the code incolldump.cc
is licensed under the GPLv2 because it links against MySQL: it's used as a codegen step to dump collation data. This collation data is not GPL licensed (it cannot possibly be, because it can also be dumped via SQL queries to a running MySQL database). Hence, this is not a licensing conflict. Thecolldump.cc
code is not part of Vitess, it's not linked against Vitess, and it's only used for code generation.Buuuut instead of fighting the heuristics of the license scanner, I'm just going to move the code to its own repository, which will appease the linter.
cc @systay @harshit-gangal
Related Issue(s)
Checklist
Deployment Notes