1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright (C) 2008-2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
# USA
package GenTest::Validator::ResultsetComparator;
require Exporter;
@ISA = qw(GenTest GenTest::Validator);
use strict;
use GenTest;
use GenTest::Constants;
use GenTest::Comparator;
use GenTest::Result;
use GenTest::Validator;
sub validate {
my ($comparator, $executors, $results) = @_;
return STATUS_OK if $#$results != 1;
my $query = $results->[0]->query();
my $compare_outcome = GenTest::Comparator::compare($results->[0], $results->[1]);
return STATUS_WONT_HANDLE if $results->[0]->status() == STATUS_SEMANTIC_ERROR || $results->[1]->status() == STATUS_SEMANTIC_ERROR;
return STATUS_WONT_HANDLE if $results->[0]->query() =~ m{EXPLAIN}sio;
if ($compare_outcome == STATUS_LENGTH_MISMATCH) {
if ($query =~ m{^\s*select}io) {
say("Query: $query failed: result length mismatch between servers (".$results->[0]->rows()." vs. ".$results->[1]->rows().")");
say(GenTest::Comparator::dumpDiff($results->[0], $results->[1]));
} else {
say("Query: $query failed: affected_rows mismatch between servers (".$results->[0]->affectedRows()." vs. ".$results->[1]->affectedRows().")");
}
} elsif ($compare_outcome == STATUS_CONTENT_MISMATCH) {
say("Query: ".$results->[0]->query()." failed: result content mismatch between servers.");
say(GenTest::Comparator::dumpDiff($results->[0], $results->[1]));
}
#
# If the discrepancy is found on SELECT, we reduce the severity of the error so that the test can continue
# hopefully finding further errors in the same run or providing an indication as to how frequent the error is
#
# If the discrepancy is on an UPDATE, then the servers have diverged and the test can not continue safely.
#
if ($query =~ m{^[\s/*!0-9]*(EXPLAIN|SELECT|ALTER|LOAD\s+INDEX|CACHE\s+INDEX)}io) {
return $compare_outcome - STATUS_SELECT_REDUCTION;
} else {
return $compare_outcome;
}
}
1;
|