@@ -466,7 +466,7 @@ sub parse_status_text {
466
466
# too many locks to print, the output might be truncated)
467
467
468
468
my $time_text ;
469
- if ( ($mysqlversion =~ / ^5\. [67]\. / ) || ($mysqlversion =~ / ^10\. [012 ]\. / ) ) {
469
+ if ( ($mysqlversion =~ / ^5\. [67]\. / ) || ($mysqlversion =~ / ^10\. [0-9 ]\. / ) ) {
470
470
( $time_text ) = $fulltext =~ m / ^([0-9-]* [0-9:]*) [0-9a-fx] * INNODB MONITOR OUTPUT/ m ;
471
471
$innodb_data {' ts' } = [ parse_innodb_timestamp_56( $time_text ) ];
472
472
} else {
@@ -634,7 +634,7 @@ sub parse_fk_section {
634
634
return 0 unless $fulltext ;
635
635
636
636
my ( $ts , $type );
637
- if ( ($mysqlversion =~ / ^5.[67]\. / ) || ($mysqlversion =~ / ^10.[012 ]\. / ) ) {
637
+ if ( ($mysqlversion =~ / ^5.[67]\. / ) || ($mysqlversion =~ / ^10.[0-9 ]\. / ) ) {
638
638
( $ts , $type ) = $fulltext =~ m / ^([0-9-]* [0-9:]*)\s [0-9a-fx] *\s +(\w +)/ m ;
639
639
$section -> {' ts' } = [ parse_innodb_timestamp_56( $ts ) ];
640
640
} else {
@@ -894,7 +894,7 @@ sub parse_dl_section {
894
894
my ( $ts ) = $fulltext =~ m / ^$s $ / m ;
895
895
return 0 unless $ts ;
896
896
897
- if ( ($mysqlversion =~ / ^5\. [67]\. / ) || ($mysqlversion =~ / ^10\. [012 ]\. / ) ) {
897
+ if ( ($mysqlversion =~ / ^5\. [67]\. / ) || ($mysqlversion =~ / ^10\. [0-9 ]\. / ) ) {
898
898
$dl -> {' ts' } = [ parse_innodb_timestamp_56( $ts ) ];
899
899
}
900
900
else {
@@ -12064,7 +12064,7 @@ This data is from the TRANSACTIONS section of SHOW INNODB STATUS.
12064
12064
12065
12065
=item IO_THREADS
12066
12066
12067
- This data is from the list of threads in the the FILE I/O section of SHOW INNODB
12067
+ This data is from the list of threads in the FILE I/O section of SHOW INNODB
12068
12068
STATUS.
12069
12069
12070
12070
=item INNODB_LOCKS
0 commit comments