fixed 5.7 tests for pt-query-digest and pt-show-grants and tweaked SqlMode for global

This commit is contained in:
frank-cizmich
2016-01-10 20:35:20 -03:00
parent b71d8fec09
commit 96aff694b1
242 changed files with 1757 additions and 14 deletions

View File

@@ -39,14 +39,21 @@ use Data::Dumper;
# SqlModes object
sub new {
my ( $class, $dbh ) = @_;
my ( $class, $dbh, %args ) = @_;
die "I need a database handle" unless $dbh;
my $global = $args{'global'} ? 'GLOBAL' : '';
my $self = {
dbh => $dbh,
global => $global,
original_modes_string => '',
};
return bless $self, $class;
bless $self, $class;
$self->{original_modes_string} = $self->get_modes_string();
return $self;
}
# Sub: add
@@ -71,7 +78,7 @@ sub add {
my $sql_mode_string = join ",", keys %$curr_modes;
$self->{dbh}->do("set sql_mode = '$sql_mode_string'") || return 0;
$self->{dbh}->do("set $self->{global} sql_mode = '$sql_mode_string'") || return 0;
PTDEBUG && _d('sql_mode changed to: ', $sql_mode_string);
return $curr_modes;
@@ -99,7 +106,7 @@ sub del {
my $sql_mode_string = join ",", keys %$curr_modes;
$self->{dbh}->do("set sql_mode = '$sql_mode_string'") || return 0;
$self->{dbh}->do("SET $self->{global} sql_mode = '$sql_mode_string'") || return 0;
PTDEBUG && _d('sql_mode changed to: ', $sql_mode_string);
return $curr_modes || 1;
@@ -149,6 +156,40 @@ sub get_modes {
return \%modes;
}
# Sub: get_modes_string
# get current set of sql modes as string
#
# Required Arguments:
# none
#
# Returns:
# sql_modes as a string (coma separated values)
sub get_modes_string {
my ( $self ) = @_;
my (undef, $sql_mode_string) = $self->{dbh}->selectrow_array("show variables like 'sql_mode'");
return $sql_mode_string;
}
# Sub: restore_original_modes
# resets sql_mode to the state it was when object was created
#
# Required Arguments:
# none
#
# Returns:
# original sql_mode as a string
sub restore_original_modes {
my ( $self ) = @_;
$self->{dbh}->do("SET $self->{global} sql_mode = '$self->{original_modes_string}'");
return $self->{original_modes_string};
}
sub _d {
my ($package, undef, $line) = caller 0;
@_ = map { (my $temp = $_) =~ s/\n/\n# /g; $temp; }

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,2 @@
default-character-set=latin1
default-collation=latin1_swedish_ci

View File

Binary file not shown.

Binary file not shown.

View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
<EFBFBD>localhost root  U<>[h

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,2 @@
default-character-set=utf8
default-collation=utf8_general_ci

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More