mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
9e032d6150
Problem:- While running individual tests of Galera_3nodes , We get warnings like '[Warning] WSREP: Could not open state file for reading: '. And because of this individual tests fails. Solution:- We change suite.pm of Galera_3nodes to supress these warnings.
55 lines
2.3 KiB
Perl
55 lines
2.3 KiB
Perl
package My::Suite::GALERA_3NODES;
|
|
use File::Basename;
|
|
use My::Find;
|
|
|
|
@ISA = qw(My::Suite);
|
|
|
|
return "Not run for embedded server" if $::opt_embedded_server;
|
|
|
|
return "WSREP is not compiled in" unless defined $::mysqld_variables{'wsrep-on'};
|
|
|
|
my ($provider) = grep { -f $_ } $ENV{WSREP_PROVIDER},
|
|
"/usr/lib/galera/libgalera_smm.so",
|
|
"/usr/lib64/galera/libgalera_smm.so";
|
|
|
|
return "No wsrep provider library" unless -f $provider;
|
|
|
|
$ENV{WSREP_PROVIDER} = $provider;
|
|
|
|
my ($spath) = grep { -f "$_/wsrep_sst_rsync"; } "$::bindir/scripts", $::path_client_bindir;
|
|
return "No SST scripts" unless $spath;
|
|
|
|
my ($epath) = grep { -f "$_/my_print_defaults"; } "$::bindir/extra", $::path_client_bindir;
|
|
return "No my_print_defaults" unless $epath;
|
|
|
|
push @::global_suppressions,
|
|
(
|
|
qr(WSREP: wsrep_sst_receive_address is set to '127.0.0.1),
|
|
qr(WSREP: Could not open saved state file for reading: ),
|
|
qr(WSREP: Could not open state file for reading: ),
|
|
qr(WSREP: Gap in state sequence. Need state transfer.),
|
|
qr(WSREP: Failed to prepare for incremental state transfer:),
|
|
qr(WSREP:.*down context.*),
|
|
qr(WSREP: Failed to send state UUID:),
|
|
qr(WSREP: last inactive check more than .* skipping check),
|
|
qr(WSREP: SQL statement was ineffective),
|
|
qr(WSREP: Releasing seqno [0-9]* before [0-9]* was assigned.),
|
|
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
|
|
qr(WSREP: Quorum: No node with complete state),
|
|
qr(WSREP: Initial position was provided by configuration or SST, avoiding override),
|
|
qr|WSREP: discarding established \(time wait\) .*|,
|
|
qr(WSREP: There are no nodes in the same segment that will ever be able to become donors, yet there is a suitable donor outside. Will use that one.),
|
|
qr(WSREP: evs::proto.*),
|
|
qr|WSREP: Ignoring possible split-brain (allowed by configuration) from view:.*|,
|
|
qr(WSREP: Member .* requested state transfer from .* but it is impossible to select State Transfer donor: Resource temporarily unavailable),
|
|
qr(WSREP: Could not find peer:),
|
|
qr(WSREP: Protocol violation. JOIN message sender .*),
|
|
qr(WSREP: JOIN message from member [0-9]* in non-primary configuration. Ignored.),
|
|
);
|
|
|
|
|
|
$ENV{PATH}="$epath:$ENV{PATH}";
|
|
$ENV{PATH}="$spath:$ENV{PATH}" unless $epath eq $spath;
|
|
|
|
bless { };
|
|
|