merged pt-upgrade-fails-on-SELECT-INTO-queries-1421781

This commit is contained in:
Frank Cizmich
2015-04-09 11:47:46 -03:00
4 changed files with 84 additions and 4 deletions

View File

@@ -6304,7 +6304,11 @@ sub save {
else { else {
my $rows; my $rows;
if ( my $sth = $results->{sth} ) { if ( my $sth = $results->{sth} ) {
if ( $event->{arg} =~ m/(?:^\s*SELECT|(?:\*\/\s*SELECT))/i ) { # Only fetch rows of select statements
# *except* when they are directed INTO
# a file or a variable. (issue lp:1421781)
if ( $event->{arg} =~ m/(?:^\s*SELECT|(?:\*\/\s*SELECT))/i
&& $event->{arg} !~ /INTO\s*(?:OUTFILE|DUMPFILE|@)/ ) {
$rows = $sth->fetchall_arrayref(); $rows = $sth->fetchall_arrayref();
} }
eval { eval {
@@ -10120,9 +10124,11 @@ sub save_and_report_results {
ignore_warnings => $ignore_warnings, ignore_warnings => $ignore_warnings,
); );
# Only SELECT statements return rows. # Only SELECT statements return rows, *except* when they are directed
# INTO a file or a variable.
my $row_diffs; my $row_diffs;
if ( $event->{arg} =~ m/(?:^\s*SELECT|(?:\*\/\s*SELECT))/i ) { if ( $event->{arg} =~ m/(?:^\s*SELECT|(?:\*\/\s*SELECT))/i
&& $event->{arg} !~ m/INTO\s*(?:OUTFILE|DUMPFILE|@)/i ) {
$row_diffs = diff_rows( $row_diffs = diff_rows(
sth1 => $results1->{sth}, sth1 => $results1->{sth},
sth2 => $results2->{sth}, sth2 => $results2->{sth},
@@ -10608,6 +10614,8 @@ C<0.5> is worse than C<0.1>, and so the query will be reported.
=head2 READ-ONLY =head2 READ-ONLY
By default, pt-upgrade only executes C<SELECT> and C<SET> statements. By default, pt-upgrade only executes C<SELECT> and C<SET> statements.
(This does not include 'SELECT...INTO' statements, which do not return
rows but dump output to a file or variable.)
If you're using recreatable test or development servers and wish to If you're using recreatable test or development servers and wish to
compare write statements too (e.g. C<INSERT>, C<UPDATE>, C<DELETE>), compare write statements too (e.g. C<INSERT>, C<UPDATE>, C<DELETE>),
then specify C<--no-read-only>. If using a binary log, you must then specify C<--no-read-only>. If using a binary log, you must

View File

@@ -128,9 +128,11 @@ sub save {
} }
else { else {
# Save rows, if any (i.e. if it's a SELECT statement). # Save rows, if any (i.e. if it's a SELECT statement).
# *except* if it's a SELECT...INTO (issue lp:1421781)
my $rows; my $rows;
if ( my $sth = $results->{sth} ) { if ( my $sth = $results->{sth} ) {
if ( $event->{arg} =~ m/(?:^\s*SELECT|(?:\*\/\s*SELECT))/i ) { if ( $event->{arg} =~ m/(?:^\s*SELECT|(?:\*\/\s*SELECT))/i
&& $event->{arg} !~ /INTO\s*(?:OUTFILE|DUMPFILE|@)/ ) {
$rows = $sth->fetchall_arrayref(); $rows = $sth->fetchall_arrayref();
} }
eval { eval {

View File

@@ -0,0 +1,66 @@
#!/usr/bin/env perl
BEGIN {
die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
};
use strict;
use warnings FATAL => 'all';
use English qw(-no_match_vars);
use Test::More;
use File::Basename;
use File::Temp qw(tempdir);
$ENV{PERCONA_TOOLKIT_TEST_USE_DSN_NAMES} = 1;
$ENV{PRETTY_RESULTS} = 1;
use PerconaTest;
use Sandbox;
require "$trunk/bin/pt-upgrade";
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $dbh1 = $sb->get_dbh_for('host1');
if ( !$dbh1 ) {
plan skip_all => 'Cannot connect to sandbox host1';
}
my $host1_dsn = $sb->dsn_for('host1');
my $tmpdir = tempdir("/tmp/pt-upgrade.$PID.XXXXXX", CLEANUP => 1);
my $samples = "$trunk/t/pt-upgrade/samples";
my $lib_samples = "$trunk/t/lib/samples";
my $exit_status = 0;
my $output;
# #############################################################################
# genlog
# #############################################################################
`rm -f /tmp/test_select_into_*.log`;
$output = output(
sub {
$exit_status = pt_upgrade::main($host1_dsn, '--save-results', $tmpdir,
qw(--type rawlog),
"$samples/select_into.log",
)},
stderr => 1,
);
is(
$exit_status,
0,
"Does not fail on SELECT...INTO statements"
);
# #############################################################################
# Done.
# #############################################################################
$sb->wipe_clean($dbh1);
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
done_testing;

View File

@@ -0,0 +1,4 @@
SELECT 1 INTO @foo;
SELECT * FROM sakila.actor INTO OUTFILE '/tmp/test_select_into_1.log';
SELECT actor_id,first_name FROM sakila.actor LIMIT 1 INTO DUMPFILE '/tmp/test_select_into_2.log';