Won't Do
Details
Assignee
UnassignedUnassignedReporter
lpjirasynclpjirasync(Deactivated)Priority
High
Details
Details
Assignee
Unassigned
UnassignedReporter
lpjirasync
lpjirasync(Deactivated)Priority
Smart Checklist
Smart Checklist
Smart Checklist
Created January 24, 2018 at 3:54 PM
Updated February 4, 2018 at 1:33 AM
Resolved January 24, 2018 at 3:54 PM
**Reported in Launchpad by Baron Schwartz last update 30-10-2012 22:13:14
I'm running pt-table-checksum from cron, and I only want output if there are differences. (Cron sends me email with any output.) Right now I'm seeing a lot of warnings from --no-check-plan. I believe this code should be changed:
7987 # Ensure that MySQL is still using the entire index.
7988 # https://bugs.launchpad.net/percona-toolkit/+bug/1010232
7989 if ( !$nibble_iter->one_nibble()
7990 && $tbl->{key_len}
7991 && ($expl->{key_len} || 0) < $tbl->{key_len} ) {
7992 if ( !$tbl->{warned}->{key_len}++
7993 && $o->get('quiet') < 2 ) {
The last line there should say "! $o->get('quiet')" in my opinion. I'm not worried if an occasional chunk is skipped.