mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-10-15 14:50:47 +00:00
PMM-11406 Fix typos in repo.
This commit is contained in:
@@ -8731,7 +8731,7 @@ type: string; default: Query
|
||||
|
||||
group: Actions
|
||||
|
||||
Comma sepatated list of commands that will be watched/killed if they ran for
|
||||
Comma separated list of commands that will be watched/killed if they ran for
|
||||
more than L<"--busy-time"> seconds. Default: C<Query>
|
||||
|
||||
By default, L<"--busy-time"> kills only C<Query> commands but in some cases, it
|
||||
|
@@ -11668,7 +11668,7 @@ sub check_orig_table {
|
||||
Cxn => $cxn,
|
||||
tbl => $orig_tbl,
|
||||
chunk_size => $o->get('chunk-size'),
|
||||
chunk_indx => $o->get('chunk-index'),
|
||||
chunk_indx => $o->get('chunk-index'), # typos:ignore-line
|
||||
OptionParser => $o,
|
||||
TableParser => $tp,
|
||||
);
|
||||
@@ -13512,7 +13512,7 @@ New rows will use the user defined default value if specified for the column.
|
||||
=item --only-same-schema-fks
|
||||
|
||||
Check foreigns keys only on tables on the same schema than the original table.
|
||||
This option is dangerous since if you have FKs refenrencing tables in other
|
||||
This option is dangerous since if you have FKs referencing tables in other
|
||||
schemas, they won't be detected.
|
||||
|
||||
|
||||
|
@@ -6239,7 +6239,7 @@ sub _get_value {
|
||||
unless $found_value;
|
||||
}
|
||||
else {
|
||||
die "Event does not have attribute $attrib and there are no alterantes";
|
||||
die "Event does not have attribute $attrib and there are no alternates";
|
||||
}
|
||||
|
||||
return $value;
|
||||
|
@@ -12591,7 +12591,7 @@ sub create_repl_table {
|
||||
#
|
||||
# Required Arguments:
|
||||
# * tbl - Standard tbl hashref
|
||||
# * sth - Sth with EXLAIN <statement>
|
||||
# * sth - Sth with EXPLAIN <statement>
|
||||
# * vals - Values for sth, if any
|
||||
#
|
||||
# Returns:
|
||||
|
@@ -6082,7 +6082,7 @@ as tmp_table_size.
|
||||
severity: warn
|
||||
|
||||
These are the recommended minimum version for each major release: 3.23, 4.1.20,
|
||||
5.0.37, 5.1.30, 5.5.8, 5.6.10, 5.7.9, 8.0.11. This optiion does not complain
|
||||
5.0.37, 5.1.30, 5.5.8, 5.6.10, 5.7.9, 8.0.11. This option does not complain
|
||||
about Innovation releases.
|
||||
|
||||
=item end-of-life mysql version
|
||||
|
@@ -20,7 +20,7 @@
|
||||
{
|
||||
# Package: Diskstats
|
||||
# This package implements most of the logic in the old shell pt-diskstats;
|
||||
# it parses data from /proc/diskstats, calculcates deltas, and prints those.
|
||||
# it parses data from /proc/diskstats, calculates deltas, and prints those.
|
||||
|
||||
package Diskstats;
|
||||
|
||||
|
@@ -1193,7 +1193,7 @@ sub _get_value {
|
||||
unless $found_value;
|
||||
}
|
||||
else {
|
||||
die "Event does not have attribute $attrib and there are no alterantes";
|
||||
die "Event does not have attribute $attrib and there are no alternates";
|
||||
}
|
||||
|
||||
return $value;
|
||||
|
@@ -1254,7 +1254,7 @@ sub remove_functions {
|
||||
# GROUP BY and ORDER BY specify a list of identifiers.
|
||||
#
|
||||
# Parameters:
|
||||
# $idents - Arrayref of indentifiers
|
||||
# $idents - Arrayref of identifiers
|
||||
#
|
||||
# Returns:
|
||||
# Arrayref of hashes with each identifier's parts, depending on what kind
|
||||
|
@@ -79,7 +79,7 @@ sub new {
|
||||
#
|
||||
# TCP requests and responses form "sessions", which can be in one of these
|
||||
# statuses:
|
||||
# [Q]uerying - The remote host is sending the query to the server.
|
||||
# [Q]uerying - The remote host is sending the query to the server. # typos:ignore-line
|
||||
# [R]esponding - The server is replying back to the remote host.
|
||||
sub parse_event {
|
||||
my ( $self, %args ) = @_;
|
||||
|
@@ -178,7 +178,7 @@ sub parse_event {
|
||||
# Otherwise, we need to compute the running sums and keep looping.
|
||||
else {
|
||||
if ( $self->{in_prg} ) {
|
||||
# $self->{current_ts} is intitially 0, which would seem likely to
|
||||
# $self->{current_ts} is initially 0, which would seem likely to
|
||||
# skew this computation. But $self->{in_prg} will be 0 also, and
|
||||
# $self->{current_ts} will get set immediately after this, so
|
||||
# anytime this if() block runs, it'll be OK.
|
||||
|
@@ -460,7 +460,7 @@ sub pingback {
|
||||
|
||||
# If the server has suggestions for items, it sends them back in
|
||||
# the same format: ITEM:TYPE:SUGGESTION\n. ITEM:TYPE is mostly for
|
||||
# debugging; the tool just repports the suggestions.
|
||||
# debugging; the tool just reports the suggestions.
|
||||
$items = parse_server_response(
|
||||
response => $response->{content},
|
||||
split_vars => 0,
|
||||
|
Reference in New Issue
Block a user