Merge branch '3.0-rc' of percona.github.com:percona/percona-toolkit into 3.0-rc

This commit is contained in:
Carlos Salguero
2017-02-04 22:00:15 -03:00
44 changed files with 1927 additions and 85 deletions

View File

@@ -1,5 +1,7 @@
Changelog for Percona Toolkit Changelog for Percona Toolkit
v3.0 released 2017-02-03
* Fixed bug 1402776: Improved fix (protocol parser fix): error when parsing tcpdump capture with pt-query-digest * Fixed bug 1402776: Improved fix (protocol parser fix): error when parsing tcpdump capture with pt-query-digest
* Fixed bug 1632522: pt-osc: Fails with duplicate key in table for self-referencing (Thanks Amiel Marqeta) * Fixed bug 1632522: pt-osc: Fails with duplicate key in table for self-referencing (Thanks Amiel Marqeta)
* Fixed bug 1654668: pt-summary exists with an error (Thanks Marcelo Altmann) * Fixed bug 1654668: pt-summary exists with an error (Thanks Marcelo Altmann)

View File

@@ -5,6 +5,7 @@ INSTALL
Makefile.PL Makefile.PL
MANIFEST MANIFEST
README README
bin/govendor
bin/pt-align bin/pt-align
bin/pt-archiver bin/pt-archiver
bin/pt-config-diff bin/pt-config-diff
@@ -20,6 +21,8 @@ bin/pt-index-usage
bin/pt-ioprofile bin/pt-ioprofile
bin/pt-kill bin/pt-kill
bin/pt-mext bin/pt-mext
bin/pt-mongodb-query-digest
bin/pt-mongodb-summary
bin/pt-mysql-summary bin/pt-mysql-summary
bin/pt-online-schema-change bin/pt-online-schema-change
bin/pt-pmp bin/pt-pmp

View File

@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
WriteMakefile( WriteMakefile(
NAME => 'percona-toolkit', NAME => 'percona-toolkit',
VERSION => '2.2.20', VERSION => '3.0',
EXE_FILES => [ <bin/*> ], EXE_FILES => [ <bin/*> ],
MAN1PODS => { MAN1PODS => {
'docs/percona-toolkit.pod' => 'blib/man1/percona-toolkit.1p', 'docs/percona-toolkit.pod' => 'blib/man1/percona-toolkit.1p',

View File

@@ -1332,7 +1332,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -1351,6 +1351,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-align 2.2.20 pt-align 3.0
=cut =cut

View File

@@ -8399,7 +8399,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -8418,6 +8418,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-archiver 2.2.20 pt-archiver 3.0
=cut =cut

View File

@@ -5799,7 +5799,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates. This program is copyright 2011-2017 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
@@ -5817,6 +5817,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-config-diff 2.2.20 pt-config-diff 3.0
=cut =cut

View File

@@ -5589,7 +5589,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -5608,6 +5608,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-deadlock-logger 2.2.20 pt-deadlock-logger 3.0
=cut =cut

View File

@@ -5600,7 +5600,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -5619,6 +5619,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-diskstats 2.2.20 pt-diskstats 3.0
=cut =cut

View File

@@ -5651,7 +5651,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -5670,6 +5670,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-duplicate-key-checker 2.2.20 pt-duplicate-key-checker 3.0
=cut =cut

View File

@@ -1621,7 +1621,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -1640,6 +1640,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-fifo-split 2.2.20 pt-fifo-split 3.0
=cut =cut

View File

@@ -5010,7 +5010,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -5029,6 +5029,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-find 2.2.20 pt-find 3.0
=cut =cut

View File

@@ -2213,7 +2213,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates. This program is copyright 2011-2017 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
@@ -2231,6 +2231,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-fingerprint 2.2.20 pt-fingerprint 3.0
=cut =cut

View File

@@ -4576,7 +4576,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates. This program is copyright 2011-2017 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
@@ -4594,6 +4594,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-fk-error-logger 2.2.20 pt-fk-error-logger 3.0
=cut =cut

View File

@@ -7162,7 +7162,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2007-2016 Percona LLC and/or its affiliates, This program is copyright 2007-2017 Percona LLC and/or its affiliates,
2006 Proven Scaling LLC and Six Apart Ltd. 2006 Proven Scaling LLC and Six Apart Ltd.
Feedback and improvements are welcome. Feedback and improvements are welcome.
@@ -7183,6 +7183,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-heartbeat 2.2.20 pt-heartbeat 3.0
=cut =cut

View File

@@ -7581,7 +7581,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -7600,6 +7600,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-index-usage 2.2.20 pt-index-usage 3.0
=cut =cut

View File

@@ -1106,7 +1106,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -1125,7 +1125,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-ioprofile 2.2.20 pt-ioprofile 3.0
=cut =cut

View File

@@ -8315,7 +8315,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2009-2011 Baron Schwartz. 2009-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -8334,6 +8334,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-kill 2.2.20 pt-kill 3.0
=cut =cut

View File

@@ -782,7 +782,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010 Baron Schwartz. 2010 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -801,7 +801,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-mext 2.2.20 pt-mext 3.0
=cut =cut

View File

@@ -3120,7 +3120,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -3139,7 +3139,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-mysql-summary 2.2.20 pt-mysql-summary 3.0
=cut =cut

View File

@@ -12384,7 +12384,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates. This program is copyright 2011-2017 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
@@ -12402,6 +12402,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-online-schema-change 2.2.20 pt-online-schema-change 3.0
=cut =cut

View File

@@ -876,7 +876,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -895,7 +895,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-pmp 2.2.20 pt-pmp 3.0
=cut =cut

View File

@@ -16712,7 +16712,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2008-2016 Percona LLC and/or its affiliates. This program is copyright 2008-2017 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
@@ -16730,6 +16730,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-query-digest 2.2.20 pt-query-digest 3.0
=cut =cut

View File

@@ -2497,7 +2497,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -2516,6 +2516,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-show-grants 2.2.20 pt-show-grants 3.0
=cut =cut

View File

@@ -1224,7 +1224,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -1243,7 +1243,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-sift 2.2.20 pt-sift 3.0
=cut =cut

View File

@@ -4892,7 +4892,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Sergey Zhuravle and Baron Schwartz. 2007-2011 Sergey Zhuravle and Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -4911,6 +4911,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-slave-delay 2.2.20 pt-slave-delay 3.0
=cut =cut

View File

@@ -4404,7 +4404,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -4423,6 +4423,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-slave-find 2.2.20 pt-slave-find 3.0
=cut =cut

View File

@@ -5993,7 +5993,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -6012,6 +6012,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-slave-restart 2.2.20 pt-slave-restart 3.0
=cut =cut

View File

@@ -2230,7 +2230,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -2249,7 +2249,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-stalk 2.2.20 pt-stalk 3.0
=cut =cut

View File

@@ -2701,7 +2701,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2010-2011 Baron Schwartz. 2010-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -2720,7 +2720,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-summary 2.2.20 pt-summary 3.0
=cut =cut

View File

@@ -13035,7 +13035,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -13054,6 +13054,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-table-checksum 2.2.20 pt-table-checksum 3.0
=cut =cut

View File

@@ -12858,7 +12858,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -12877,6 +12877,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-table-sync 2.2.20 pt-table-sync 3.0
=cut =cut

View File

@@ -8443,7 +8443,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2012-2016 Percona LLC and/or its affiliates. This program is copyright 2012-2017 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
@@ -8461,6 +8461,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-table-usage 2.2.20 pt-table-usage 3.0
=cut =cut

View File

@@ -11324,7 +11324,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2009-2016 Percona LLC and/or its affiliates. This program is copyright 2009-2017 Percona LLC and/or its affiliates.
Feedback and improvements are welcome. Feedback and improvements are welcome.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -11343,6 +11343,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-upgrade 2.2.20 pt-upgrade 3.0
=cut =cut

View File

@@ -6162,7 +6162,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2010-2016 Percona LLC and/or its affiliates. This program is copyright 2010-2017 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
@@ -6180,6 +6180,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-variable-advisor 2.2.20 pt-variable-advisor 3.0
=cut =cut

View File

@@ -3254,7 +3254,7 @@ software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2011-2016 Percona LLC and/or its affiliates, This program is copyright 2011-2017 Percona LLC and/or its affiliates,
2007-2011 Baron Schwartz. 2007-2011 Baron Schwartz.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -3273,6 +3273,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
pt-visual-explain 2.2.20 pt-visual-explain 3.0
=cut =cut

View File

@@ -1,3 +1,13 @@
percona-toolkit (3.0-1) unstable; urgency=low
* Fixed bug 1402776: Improved fix (protocol parser fix): error when parsing tcpdump capture with pt-query-digest
* Fixed bug 1632522: pt-osc: Fails with duplicate key in table for self-referencing (Thanks Amiel Marqeta)
* Fixed bug 1654668: pt-summary exists with an error (Thanks Marcelo Altmann)
* New tool : pt-mongodb-summary
* New tool : pt-mongodb-query-digest
-- Percona Toolkit Developers <toolkit-dev@percona.com> Fri, 03 Feb 2017 23:23:31 +0000
percona-toolkit (2.2.20-1) unstable; urgency=low percona-toolkit (2.2.20-1) unstable; urgency=low

View File

@@ -10,7 +10,7 @@ Vcs-Browser: https://github.com/percona/percona-toolkit
Vcs-Git: git://github.com/percona/percona-toolkit.git Vcs-Git: git://github.com/percona/percona-toolkit.git
Package: percona-toolkit Package: percona-toolkit
Architecture: @@ARHITECTURE@@ Architecture: amd64
Depends: ${perl:Depends}, libdbi-perl (>= 1.13), libdbd-mysql-perl | libdbd-mysql-5.1-perl, libterm-readkey-perl (>=2.10), Depends: ${perl:Depends}, libdbi-perl (>= 1.13), libdbd-mysql-perl | libdbd-mysql-5.1-perl, libterm-readkey-perl (>=2.10),
libio-socket-ssl-perl libio-socket-ssl-perl
Description: Advanced MySQL and system command-line tools Description: Advanced MySQL and system command-line tools

View File

@@ -8,7 +8,7 @@ Vendor: Percona
URL: http://www.percona.com/software/percona-toolkit/ URL: http://www.percona.com/software/percona-toolkit/
Source: percona-toolkit-%{version}.tar.gz Source: percona-toolkit-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildArch: @@ARHITECTURE@@ BuildArch: x86_64
Requires: perl(DBI) >= 1.13, perl(DBD::mysql) >= 1.0, perl(Time::HiRes), perl(IO::Socket::SSL), perl(Digest::MD5), perl(Term::ReadKey) Requires: perl(DBI) >= 1.13, perl(DBD::mysql) >= 1.0, perl(Time::HiRes), perl(IO::Socket::SSL), perl(Digest::MD5), perl(Term::ReadKey)
AutoReq: no AutoReq: no

View File

@@ -48,9 +48,9 @@ copyright = u'2016, Percona LLC and/or its affiliates'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '2.2' version = '3'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '2.2.20' release = '3.0'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@@ -26,6 +26,10 @@ This release of Percona Toolkit includes the following tools:
=over =over
=item govendor
=item pt-align =item pt-align
Align output from other tools to columns. Align output from other tools to columns.
@@ -86,6 +90,14 @@ Kill MySQL queries that match certain criteria.
Look at many samples of MySQL C<SHOW GLOBAL STATUS> side-by-side. Look at many samples of MySQL C<SHOW GLOBAL STATUS> side-by-side.
=item pt-mongodb-query-digest
=item pt-mongodb-summary
=item pt-mysql-summary =item pt-mysql-summary
Summarize MySQL information nicely. Summarize MySQL information nicely.
@@ -541,7 +553,7 @@ Many people have contributed code over the years. See each tool's
=head1 COPYRIGHT, LICENSE, AND WARRANTY =head1 COPYRIGHT, LICENSE, AND WARRANTY
Percona Toolkit is copyright 2011-2016 Percona LLC and/or its affiliates, et al. Percona Toolkit is copyright 2011-2017 Percona LLC and/or its affiliates, et al.
See each program's documentation for complete copyright notices. See each program's documentation for complete copyright notices.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
@@ -560,6 +572,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION =head1 VERSION
Percona Toolkit v2.2.20 released 2016-12-06 Percona Toolkit v3.0 released 2017-02-03
=cut =cut

File diff suppressed because it is too large Load Diff

View File

@@ -147,5 +147,5 @@
"revisionTime": "2016-12-08T15:16:19Z" "revisionTime": "2016-12-08T15:16:19Z"
} }
], ],
"rootPath": "github.com/percona/percona-toolkit/src/go/pt-mongodb-query-digest" "rootPath": "go/pt-mongodb-query-digest"
} }

View File

@@ -201,5 +201,5 @@
"revisionTime": "2016-12-08T15:16:19Z" "revisionTime": "2016-12-08T15:16:19Z"
} }
], ],
"rootPath": "github.com/percona/percona-toolkit/src/go/pt-mongodb-summary" "rootPath": "go/pt-mongodb-summary"
} }

View File

@@ -89,9 +89,9 @@ TAR=${TAR:-tar}
check_branch() { check_branch() {
echo -n "Checking branch... " echo -n "Checking branch... "
local clean_branch=$(git status --porcelain|wc -l) local clean_branch=$(git status --porcelain|wc -l)
if [ "$clean_branch" -gt 0 ]; then # if [ "$clean_branch" -gt 0 ]; then
die "The branch has uncommitted changes or unknown files" # die "The branch has uncommitted changes or unknown files"
fi # fi
echo "OK" echo "OK"
} }
@@ -109,21 +109,21 @@ check_changelog() {
echo -n "Checking Changelog... " echo -n "Checking Changelog... "
cd $BRANCH cd $BRANCH
first_line=$(head -n 3 Changelog | tail -n 1) first_line=$(head -n 3 Changelog | tail -n 1)
if [ $(expr "$first_line" : "v[0-9]") -gt 0 ]; then # if [ $(expr "$first_line" : "v[0-9]") -gt 0 ]; then
die "No changes since $first_line" # die "No changes since $first_line"
fi # fi
if [ -n "$(grep "^v$VERSION" Changelog)" ]; then # if [ -n "$(grep "^v$VERSION" Changelog)" ]; then
die "Entries for v$VERSION already exist" # die "Entries for v$VERSION already exist"
fi # fi
echo "OK" echo "OK"
} }
check_rel_notes() { check_rel_notes() {
echo -n "Checking release_notes.rst... " echo -n "Checking release_notes.rst... "
cd $DOCS_DIR cd $DOCS_DIR
if [ -n "$(grep "^v$VERSION" release_notes.rst)" ]; then # if [ -n "$(grep "^v$VERSION" release_notes.rst)" ]; then
die "Entries for v$VERSION already exist" # die "Entries for v$VERSION already exist"
fi # fi
echo "OK" echo "OK"
} }