Skip to content

Commit

Permalink
Merge pull request #528 from grooverdan/gtidmode_mariadb
Browse files Browse the repository at this point in the history
mariadb gtid mode - base off gtid_current_pos.
  • Loading branch information
jmrenouard committed Jan 27, 2021
2 parents d9e0004 + 9d1d19c commit 285ba51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1121,9 +1121,9 @@ sub get_all_vars {
}

# Support GTID MODE FOR MARIADB
# Issue MariaDB GTID mode #272
$myvar{'gtid_mode'} = $myvar{'gtid_strict_mode'}
if ( defined( $myvar{'gtid_strict_mode'} ) );
# Issue MariaDB GTID mode #513
$myvar{'gtid_mode'} = 'ON'
if ( defined( $myvar{'gtid_current_pos'} ) and $myvar{'gtid_current_pos'} ne '' );

$myvar{'have_threadpool'} = "NO";
if ( defined( $myvar{'thread_pool_size'} )
Expand Down

0 comments on commit 285ba51

Please sign in to comment.