PT-2264 - pt-query-digest Pipeline process 11 (--output slowlog) caused an error: Wide character

- Updated lib/DSNParser.pm, so it sets binmode to character set utf8 since
  MySQL 8.0 if character set is not specified in the DSN
- Added test case
- Run update-modules
This commit is contained in:
Sveta Smirnova
2024-03-19 00:08:42 +03:00
parent 80c266b048
commit 1ad44e04da
22 changed files with 711 additions and 581 deletions

View File

@@ -0,0 +1,70 @@
#!/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 PerconaTest;
use DSNParser;
use Sandbox;
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $dbh = $sb->get_dbh_for('master');
if ( !$dbh ) {
plan skip_all => 'Cannot connect to sandbox master';
}
else {
plan tests => 3;
}
my $pid_file = "/tmp/pt-query-digest-test-pt-2264.t.$PID";
my $log_file = "/tmp/pt-query-digest-test-pt-2264.t.log";
# Need a clean query review table.
$sb->create_dbs($dbh, [qw(test percona_schema)]);
# Run pt-query-digest in the background for 2s,
# saving queries to test.query_review.
diag(`$trunk/bin/pt-query-digest --processlist h=127.1,P=12345,u=msandbox,p=msandbox --interval 0.01 --daemonize --pid $pid_file --output slowlog --log $log_file --run-time 3`);
# Wait until its running.
PerconaTest::wait_for_files($pid_file);
# Execute some queries to give it something to see.
for (1..3) {
$dbh->selectall_arrayref("SELECT SLEEP(2), '😜'");
}
# Wait until it stops running (should already be done).
wait_until(sub { !-e $pid_file });
my $output = `cat $log_file`;
like(
$output,
qr/😜/,
'Smiley character successfully printed in the output'
);
unlike(
$output,
qr/Wide character in print at/,
'Smiley character did not cause error'
);
# #############################################################################
# Done.
# #############################################################################
diag(`rm $log_file`);
$sb->wipe_clean($dbh);
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
exit;