~drizzle-trunk/drizzle/development

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#
# 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::DML;

require Exporter;
@ISA = qw(GenTest::Validator GenTest);

use strict;

use GenTest;
use GenTest::Comparator;
use GenTest::Constants;
use GenTest::Result;
use GenTest::Validator;
use Time::HiRes;

my $matched_rows_count = 0;

sub validate {
	my ($validator, $executors, $results) = @_;
	my $executor = $executors->[0];
	my $dbh = $executor->dbh();
	my $orig_result = $results->[0];
	my $orig_query = $orig_result->query();

	return STATUS_WONT_HANDLE if $orig_query !~ m{INSERT|UPDATE|DELETE}sio;
	return STATUS_WONT_HANDLE if $orig_result->status() != STATUS_OK;

	$dbh->do("ROLLBACK");
	my $join_cache_level = $dbh->selectrow_array('SELECT @@join_cache_level');
	my $optimizer_switch = $dbh->selectrow_array('SELECT @@optimizer_switch');
	my $optimizer_use_mrr = $dbh->selectrow_array('SELECT @@optimizer_use_mrr');

	$dbh->do("SET SESSION join_cache_level = 0");
	$dbh->do("SET SESSION optimizer_switch = 'index_merge=off,index_merge_union=off,index_merge_sort_union=off,index_merge_intersection=off,index_merge_sort_intersection=off,index_condition_pushdown=off,firstmatch=off,loosescan=off,materialization=off,semijoin=off,partial_match_rowid_merge=off,partial_match_table_scan=off,subquery_cache=off,mrr_sort_keys=off,join_cache_incremental=off,join_cache_hashed=off,join_cache_bka=off,table_elimination=off'");
	$dbh->do("SET SESSION optimizer_use_mrr = 'disable'");

	$dbh->do("START TRANSACTION");
	my $oracle_result = $executor->execute($orig_query);
	$dbh->do("ROLLBACK");

	$dbh->do("SET SESSION join_cache_level = $join_cache_level");
	$dbh->do("SET SESSION optimizer_switch = '$optimizer_switch'");
	$dbh->do("SET SESSION optimizer_use_mrr = '$optimizer_use_mrr'");

	$matched_rows_count = $matched_rows_count + $oracle_result->matchedRows();

	if ($orig_result->status() != $oracle_result->status()) {
		say("Query: $orig_query; had a different STATUS when executed without optimizations ('".$orig_result->errstr()."' vs. '".$oracle_result->errstr()."').");
		return STATUS_ERROR_MISMATCH;
	} elsif (int($orig_result->affectedRows()) != int($oracle_result->affectedRows())) {
		say("Query: $orig_query; affected a different number of rows when run with no optimizations (".$orig_result->affectedRows()." vs. ".$oracle_result->affectedRows().").");
		return STATUS_LENGTH_MISMATCH;
	} elsif ($orig_result->matchedRows() != $oracle_result->matchedRows()) {
		say("Query: $orig_query; matched a different number of rows when run with no optimizations (".$orig_result->matchedRows()." vs. ".$oracle_result->matchedRows().").");
		return STATUS_LENGTH_MISMATCH;
	} elsif ($orig_result->changedRows() != $oracle_result->changedRows()) {
		say("Query: $orig_query; changed a different number of rows when run with no optimizations (".$orig_result->changedRows()." vs. ".$oracle_result->changedRows().").");
		return STATUS_LENGTH_MISMATCH;
	} else {
		return STATUS_OK;
	}
}

sub DESTROY {
	say("Total matched_rows reported by the DML statements: $matched_rows_count.");
}

1;