Archive for December, 2006
Humility: Four days later, mysqlreport v3.0 fixed
mysqlreport v3.0a has been released which fixes a bug on line 93:
chomperc($mycnf{’pass’} = <STDIN>);
should be just
chomp($mycnf{’pass’} = <STDIN>);
Thanks to jeroen for pointing this out to me. This bug caused mysqlreport to die when using –pass to prompt for a password:
Undefined subroutine &main::chomperc called at mysqlreport line 93
In other news: thanks also to Aurimas for some technical clarifications in the mysqlreport Guide about temp tables.
mysqlreport v3.0 – Finally, InnoDB reports
mysqlreport v3.0 has been released (v2.8 & v2.9 were skipped) which finally has InnoDB reports for MySQL servers v5.0.2 and up. The documentation has been updated accordingly. The new options that invoke the InnoDB reports are –innodb (or -id), –innodb-only (or -ido), and –dpr (for the extra Data, Pages, Rows report).
Since this is the first release with InnoDB reports, feedback on the InnoDB reports is appreciated. Eventually, I’ll update the mysqlreport guide to explain the InnoDB reports. For now, I think the InnoDB reports are self-evident to those who know a little about how the InnoDB storage engine works.