mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
Add forked Maatkit tools in bin/ and their tests in t/.
This commit is contained in:
359
t/pt-index-usage/save_results.t
Normal file
359
t/pt-index-usage/save_results.t
Normal file
@@ -0,0 +1,359 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
BEGIN {
|
||||
die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
|
||||
unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
|
||||
unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
|
||||
};
|
||||
|
||||
use strict;
|
||||
use warnings FATAL => 'all';
|
||||
use English qw(-no_match_vars);
|
||||
use Test::More;
|
||||
|
||||
use MaatkitTest;
|
||||
# See http://code.google.com/p/maatkit/wiki/Testing
|
||||
shift @INC; # MaatkitTest's unshift
|
||||
require "$trunk/bin/pt-index-usage";
|
||||
|
||||
use Sandbox;
|
||||
my $dp = new DSNParser(opts=>$dsn_opts);
|
||||
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
|
||||
my $dbh = $sb->get_dbh_for('master');
|
||||
|
||||
if ( !$dbh ) {
|
||||
plan skip_all => 'Cannot connect to sandbox master';
|
||||
}
|
||||
if ( !@{ $dbh->selectall_arrayref('show databases like "sakila"') } ) {
|
||||
plan skip_all => "Sakila database is not loaded";
|
||||
}
|
||||
else {
|
||||
plan tests => 17;
|
||||
}
|
||||
|
||||
my $cnf = '/tmp/12345/my.sandbox.cnf';
|
||||
my @args = ('-F', $cnf, '--save-results-database', 'D=mk');
|
||||
my $samples = "t/pt-index-usage/samples/";
|
||||
my $output;
|
||||
|
||||
$sb->wipe_clean($dbh);
|
||||
|
||||
mk_index_usage::main(@args, "$trunk/t/lib/samples/empty",
|
||||
qw(--empty-save-results --create-save-results-database --no-report),
|
||||
'-t', 'sakila.actor,sakila.address');
|
||||
|
||||
$dbh->do("use mk");
|
||||
|
||||
my $rows = $dbh->selectcol_arrayref("show databases");
|
||||
my $ok = grep { $_ eq "mk" } @$rows;
|
||||
ok(
|
||||
$ok,
|
||||
"--create-save-results-databse"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectcol_arrayref("show tables from `mk`");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[qw(index_alternatives index_usage indexes queries tables)],
|
||||
"Create tables"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.tables order by db, tbl");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[
|
||||
[qw( sakila actor 0 )],
|
||||
[qw( sakila address 0 )],
|
||||
],
|
||||
"Populate tables table (filtered)"
|
||||
);
|
||||
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.indexes order by db, tbl");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[
|
||||
[qw(sakila actor idx_actor_last_name 0)],
|
||||
[qw(sakila actor PRIMARY 0)],
|
||||
[qw(sakila address idx_fk_city_id 0)],
|
||||
[qw(sakila address PRIMARY 0)],
|
||||
],
|
||||
"Populate indexes table (filtered)"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.queries");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[],
|
||||
"No queries yet"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.index_usage");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[],
|
||||
"No index usage counts yet"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.index_alternatives");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[],
|
||||
"No index alternatives yet"
|
||||
);
|
||||
|
||||
# Now for the real test.
|
||||
mk_index_usage::main(@args, "$trunk/t/pt-index-usage/samples/slow007.txt",
|
||||
qw(--empty-save-results --no-report), '-t', 'sakila.actor,sakila.address');
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.tables order by db, tbl");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[
|
||||
[qw( sakila actor 4 )],
|
||||
[qw( sakila address 0 )],
|
||||
],
|
||||
"Table access counts"
|
||||
);
|
||||
|
||||
# EXPLAIN results differ a little between 5.0 and 5.1. 5.1 is smarter.
|
||||
my $res = $sandbox_version ge '5.1' ?
|
||||
# v5.1 and newer
|
||||
[
|
||||
[qw(sakila actor idx_actor_last_name 1)],
|
||||
[qw(sakila actor PRIMARY 3)],
|
||||
[qw(sakila address idx_fk_city_id 0)],
|
||||
[qw(sakila address PRIMARY 0)],
|
||||
]
|
||||
: # v5.0 and older
|
||||
[
|
||||
[qw(sakila actor idx_actor_last_name 2)],
|
||||
[qw(sakila actor PRIMARY 2)],
|
||||
[qw(sakila address idx_fk_city_id 0)],
|
||||
[qw(sakila address PRIMARY 0)],
|
||||
];
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.indexes order by db, tbl");
|
||||
is_deeply(
|
||||
$rows,
|
||||
$res,
|
||||
"Index usage counts"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.queries order by query_id");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[
|
||||
[ 4950186562421969363,
|
||||
"select * from sakila.actor where last_name like ?",
|
||||
"select * from sakila.actor where last_name like 'A%'",
|
||||
],
|
||||
[ 10334408417593890092,
|
||||
"select * from sakila.actor where last_name like ? order by actor_id",
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id",
|
||||
],
|
||||
[ 10891801448710051322,
|
||||
"select * from sakila.actor where actor_id>?",
|
||||
"select * from sakila.actor where actor_id>10",
|
||||
],
|
||||
],
|
||||
"Queries added"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select query_id, db, tbl, idx, sample, cnt from index_usage iu left join queries q using (query_id) order by db, tbl, idx");
|
||||
$res = $sandbox_version ge '5.1' ?
|
||||
# v5.1 and newer
|
||||
[
|
||||
[
|
||||
4950186562421969363,
|
||||
qw(sakila actor idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%'",
|
||||
1,
|
||||
],
|
||||
[
|
||||
10891801448710051322,
|
||||
qw(sakila actor PRIMARY),
|
||||
"select * from sakila.actor where actor_id>10",
|
||||
2,
|
||||
],
|
||||
[
|
||||
10334408417593890092,
|
||||
qw(sakila actor PRIMARY),
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id",
|
||||
1,
|
||||
],
|
||||
]
|
||||
:
|
||||
# v5.0 and older
|
||||
[
|
||||
[
|
||||
4950186562421969363,
|
||||
qw(sakila actor idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%'",
|
||||
1,
|
||||
],
|
||||
[
|
||||
10334408417593890092,
|
||||
qw(sakila actor idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id",
|
||||
1,
|
||||
],
|
||||
[
|
||||
10891801448710051322,
|
||||
qw(sakila actor PRIMARY),
|
||||
"select * from sakila.actor where actor_id>10",
|
||||
2,
|
||||
],
|
||||
];
|
||||
is_deeply(
|
||||
$rows,
|
||||
$res,
|
||||
"Index usage",
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select db,tbl,idx,alt_idx,sample from index_alternatives a left join queries q using (query_id)");
|
||||
$res = $sandbox_version ge '5.1' ?
|
||||
[[qw(sakila actor PRIMARY idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id"]]
|
||||
: [];
|
||||
is_deeply(
|
||||
$rows,
|
||||
$res,
|
||||
"Index alternatives"
|
||||
);
|
||||
|
||||
# #############################################################################
|
||||
# Run again to check that cnt vals are properly updated.
|
||||
# #############################################################################
|
||||
mk_index_usage::main(@args, "$trunk/t/pt-index-usage/samples/slow007.txt",
|
||||
qw(--no-report), '-t', 'sakila.actor,sakila.address');
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.tables order by db, tbl");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[
|
||||
[qw( sakila actor 8 )],
|
||||
[qw( sakila address 0 )],
|
||||
],
|
||||
"Updated table access counts"
|
||||
);
|
||||
|
||||
# EXPLAIN results differ a little between 5.0 and 5.1. 5.1 is smarter.
|
||||
$res = $sandbox_version ge '5.1' ?
|
||||
# v5.1 and newer
|
||||
[
|
||||
[qw(sakila actor idx_actor_last_name 2)],
|
||||
[qw(sakila actor PRIMARY 6)],
|
||||
[qw(sakila address idx_fk_city_id 0)],
|
||||
[qw(sakila address PRIMARY 0)],
|
||||
]
|
||||
: # v5.0 and older
|
||||
[
|
||||
[qw(sakila actor idx_actor_last_name 4)],
|
||||
[qw(sakila actor PRIMARY 4)],
|
||||
[qw(sakila address idx_fk_city_id 0)],
|
||||
[qw(sakila address PRIMARY 0)],
|
||||
];
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.indexes order by db, tbl");
|
||||
is_deeply(
|
||||
$rows,
|
||||
$res,
|
||||
"Updated index usage counts"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select * from mk.queries order by query_id");
|
||||
is_deeply(
|
||||
$rows,
|
||||
[
|
||||
[ 4950186562421969363,
|
||||
"select * from sakila.actor where last_name like ?",
|
||||
"select * from sakila.actor where last_name like 'A%'",
|
||||
],
|
||||
[ 10334408417593890092,
|
||||
"select * from sakila.actor where last_name like ? order by actor_id",
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id",
|
||||
],
|
||||
[ 10891801448710051322,
|
||||
"select * from sakila.actor where actor_id>?",
|
||||
"select * from sakila.actor where actor_id>10",
|
||||
],
|
||||
],
|
||||
"Same queries added"
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select query_id, db, tbl, idx, sample, cnt from index_usage iu left join queries q using (query_id) order by db, tbl, idx");
|
||||
$res = $sandbox_version ge '5.1' ?
|
||||
# v5.1 and newer
|
||||
[
|
||||
[
|
||||
4950186562421969363,
|
||||
qw(sakila actor idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%'",
|
||||
2,
|
||||
],
|
||||
[
|
||||
10891801448710051322,
|
||||
qw(sakila actor PRIMARY),
|
||||
"select * from sakila.actor where actor_id>10",
|
||||
4,
|
||||
],
|
||||
[
|
||||
10334408417593890092,
|
||||
qw(sakila actor PRIMARY),
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id",
|
||||
2,
|
||||
],
|
||||
]
|
||||
:
|
||||
# v5.0 and older
|
||||
[
|
||||
[
|
||||
4950186562421969363,
|
||||
qw(sakila actor idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%'",
|
||||
2,
|
||||
],
|
||||
[
|
||||
10334408417593890092,
|
||||
qw(sakila actor idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id",
|
||||
2,
|
||||
],
|
||||
[
|
||||
10891801448710051322,
|
||||
qw(sakila actor PRIMARY),
|
||||
"select * from sakila.actor where actor_id>10",
|
||||
4,
|
||||
],
|
||||
];
|
||||
is_deeply(
|
||||
$rows,
|
||||
$res,
|
||||
"Same index usage",
|
||||
);
|
||||
|
||||
$rows = $dbh->selectall_arrayref("select db,tbl,idx,alt_idx,sample from index_alternatives a left join queries q using (query_id)");
|
||||
$res = $sandbox_version ge '5.1' ?
|
||||
[[qw(sakila actor PRIMARY idx_actor_last_name),
|
||||
"select * from sakila.actor where last_name like 'A%' order by actor_id"]]
|
||||
: [];
|
||||
is_deeply(
|
||||
$rows,
|
||||
$res,
|
||||
"Same index alternatives"
|
||||
);
|
||||
|
||||
|
||||
# #############################################################################
|
||||
# Issue 1184: Make mk-index-usage create views for canned queries
|
||||
# #############################################################################
|
||||
SKIP: {
|
||||
skip "MySQL sandbox version < 5.0", 1 unless $sandbox_version ge '5.0';
|
||||
}
|
||||
|
||||
# #############################################################################
|
||||
# Done.
|
||||
# #############################################################################
|
||||
$sb->wipe_clean($dbh);
|
||||
exit;
|
Reference in New Issue
Block a user