~matthias-leich/randgen/rqg-exp

« back to all changes in this revision

Viewing changes to lib/GenTest/Constants.pm

  • Committer: Philip Stoev
  • Date: 2009-10-22 09:07:16 UTC
  • mfrom: (60.1.6 randgen)
  • Revision ID: pstoev@mysql.com-20091022090716-e4zs82sicmaotruh
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        DB_POSTGRES
52
52
        DB_JAVADB
53
53
        DB_DRIZZLE
 
54
 
 
55
    DEFAULT_MTR_BUILD_THREAD
54
56
);
55
57
 
56
 
use constant STATUS_OK                          => 1;
 
58
use constant STATUS_OK                          => 0; ## Suitable for exit code
57
59
use constant STATUS_UNKNOWN_ERROR               => 2;
58
60
 
59
61
use constant STATUS_ANY_ERROR                   => 3;   # Used in util/simplify* to not differentiate based on error code
108
110
use constant DB_JAVADB          => 4;
109
111
use constant DB_DRIZZLE         => 5;
110
112
 
 
113
use constant DEFAULT_MTR_BUILD_THREAD => 930; ## Legacy...
 
114
 
111
115
1;