#156: Removing index stat dur to erronous information
This commit is contained in:
parent
a477d5e14e
commit
09383daee8
1 changed files with 5 additions and 0 deletions
|
@ -2742,6 +2742,11 @@ sub mysql_indexes {
|
||||||
"Skip Index metrics from information schema missing in this version";
|
"Skip Index metrics from information schema missing in this version";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
unless ( mysql_version_ge( 5, 6 ) ) {
|
||||||
|
infoprint
|
||||||
|
"Skip Index metrics from information schema due to erronous information provided in this version";
|
||||||
|
return;
|
||||||
|
}
|
||||||
my $selIdxReq = <<'ENDSQL';
|
my $selIdxReq = <<'ENDSQL';
|
||||||
SELECT
|
SELECT
|
||||||
CONCAT(CONCAT(t.TABLE_SCHEMA, '.'),t.TABLE_NAME) AS 'table'
|
CONCAT(CONCAT(t.TABLE_SCHEMA, '.'),t.TABLE_NAME) AS 'table'
|
||||||
|
|
Loading…
Reference in a new issue