~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to lib/GenTest/Executor.pm

 allow working with tables and databases of varying structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
@ISA = qw(GenTest Exporter);
5
5
 
6
6
@EXPORT = qw(
7
 
        EXECUTOR_ROW_STATS
8
 
        EXECUTOR_EXPLAIN_STATS
9
 
        EXECUTOR_ERROR_STATS
 
7
        EXECUTOR_ROW_COUNTS
 
8
        EXECUTOR_EXPLAIN_COUNTS
 
9
        EXECUTOR_EXPLAIN_QUERIES
 
10
        EXECUTOR_ERROR_COUNTS
10
11
);
11
12
 
12
13
use strict;
16
17
use constant EXECUTOR_DBH               => 1;
17
18
use constant EXECUTOR_ID                => 2;
18
19
use constant EXECUTOR_DEBUG             => 3;
19
 
use constant EXECUTOR_ROW_STATS         => 4;
20
 
use constant EXECUTOR_EXPLAIN_STATS     => 5;
21
 
use constant EXECUTOR_ERROR_STATS       => 6;
 
20
use constant EXECUTOR_ROW_COUNTS        => 4;
 
21
use constant EXECUTOR_EXPLAIN_COUNTS    => 5;
 
22
use constant EXECUTOR_EXPLAIN_QUERIES   => 6;
 
23
use constant EXECUTOR_ERROR_COUNTS      => 7;
22
24
 
23
25
1;
24
26