~matthias-leich/randgen/rqg-exp

« back to all changes in this revision

Viewing changes to conf/replication-dml_data.zz

  • Committer: Matthias Leich
  • Date: 2009-11-20 11:24:39 UTC
  • mfrom: (123.1.31 lp-randgen)
  • Revision ID: matthias.leich@sun.com-20091120112439-t5u6lumy426g6x7j
Merge latest changes from main branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
$tables = {
 
2
        # rows => [0, 1, 10, 100],
 
3
        rows => [0, 1, 10],
 
4
        # partitions => [ undef , 'KEY (pk) PARTITIONS 2' ],
 
5
        engines => [ undef, 'MyISAM', 'InnoDB' ],
 
6
        # engines => [ undef, 'MyISAM', 'InnoDB' ],
 
7
        pk => [ 'int auto_increment' ]
 
8
};
 
9
 
 
10
$fields = {
 
11
        # decimal(M,N) is not supproted by RQG. I would have taken decimal(65,30),decimal(10,0).
 
12
        types => [ 'bit(4)','tinyint','smallint','mediumint','int', 'bigint','float','double','decimal(35)','decimal','char(1)','char(10)','varchar(1)','varchar(10)','varchar(257)', 'enum', 'set', 'text', 'blob' ],
 
13
        indexes => [ undef ],
 
14
        # null => [undef, 'not null'],
 
15
        # default => [undef, 'default null' ],
 
16
        # sign => [undef, 'unsigned' ],
 
17
        # charsets => ['utf8', 'latin1' ]
 
18
};
 
19
 
 
20
$data => {
 
21
        numbers => [ 'digit', 'null', undef ],
 
22
        strings => [ 'letter', 'english', 'null' ],
 
23
        blobs => [ 'english', 'data' ]
 
24
}