Start testing --save-results. Let $cmd be a file in PerconaTest.pm. Remove 'at ... line N' from EventExecutor.pm errors.

This commit is contained in:
Daniel Nichter
2013-02-20 08:27:49 -07:00
parent 4cb51140f1
commit e62a02e0d3
11 changed files with 182 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
$meta = {
error => undef,
query_time => '0',
warnings => {}
};
##

View File

@@ -0,0 +1,2 @@
select * from test.t order by id
##

View File

@@ -0,0 +1,34 @@
$results = [
[
'1',
'a',
'2013-01-01 00:00:01'
],
[
'2',
'b',
'2013-01-01 00:00:02'
],
[
'3',
'c',
'2013-01-01 00:00:03'
],
[
'4',
'd',
'2013-01-01 00:00:04'
],
[
'5',
'e',
'2013-01-01 00:00:05'
],
[
'6',
'f',
'2013-01-01 00:00:06'
]
];
##