-
Notifications
You must be signed in to change notification settings - Fork 376
PMM-15195 Fixes and MySQL 9.7 changes. #1152
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
Open
JiriCtvrtka
wants to merge
11
commits into
3.x
Choose a base branch
from
PMM-15195-mysql-97
base: 3.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
82dc202
PMM-15195 Support MySQL 9.7 summaries
JiriCtvrtka ff936cd
PMM-15195 Keep mysqldump validation for summaries
JiriCtvrtka fec6780
Revert "PMM-15195 Keep mysqldump validation for summaries"
JiriCtvrtka 65694d0
PMM-15195 Optional PMM Dump.
JiriCtvrtka fd5d7db
Merge remote-tracking branch 'origin/PMM-15195-mysql-97' into PMM-151…
JiriCtvrtka 2f43aa6
PMM-15195 Bump Go to 1.26.5 to address CVE-2026-39822
JiriCtvrtka 258d361
PMM-15195 Sync pt-mysql-summary modules.
JiriCtvrtka 477a87b
PMM-15195 Improvements.
JiriCtvrtka e7bbf92
PMM-15195 Keep reporting a log size the server does expose.
JiriCtvrtka d5d2340
PMM-15195 Cover the redo log variable layouts that actually differ.
JiriCtvrtka f296151
PMM-15195 Document that the Log File Size rendering is version depend…
JiriCtvrtka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| module github.com/percona/percona-toolkit | ||
|
|
||
| go 1.26.4 | ||
| go 1.26.5 | ||
|
|
||
| require ( | ||
| github.com/AlekSi/pointer v1.2.0 | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
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.
Requiring both
log_sizeandlog_filemeans a server that exposes onlyinnodb_log_file_sizenow reportsUnknown, discarding a value it actually has. Verified by drivingsection_innodbwithinnodb_log_files_in_groupstripped and noinnodb_redo_log_capacitypresent:That combination is MariaDB 10.5+, which dropped
innodb_log_files_in_groupand never hadinnodb_redo_log_capacity. The old code wasn't correct there either — it emitted a malformed* 92.0M =— so this isn't a clean regression, but it trades garbage for no information instead of for the number. Defaulting the multiplier costs one line:Worth confirming whether MariaDB is in scope for
pt-mysql-summaryat all — there are no MariaDB samples undert/pt-mysql-summary/samples/, so CI wouldn't catch it either way.