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
|
# WL#5004 Comprehensive Locking Stress Test for Azalea
#
# Grammar for generation of templates of testing objects (tables).
#
# We finally
# - work on copies of the objects
# - do not modify the objects
# created here.
#
# Therefore specialities like
# 1. "Special" tables like partitioned, merged, views etc.
# 2. Varaition of the storage engine
# make no sense.
#
# Please read conf/WL5004_sql.yy for more information.
#
$tables = {
rows => [0, 1, 10 ]
};
$fields = {
types => [ 'int' ],
indexes => [undef, 'key' ]
};
$data = {
numbers => [ 'digit', 'null', undef ],
strings => [ 'letter', 'english' ],
blobs => [ 'data' ],
temporals => ['date', 'year', 'null', undef ]
}
|