1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# For functional testing of metadata locking, table contents do not matter
# So we create the simplest tables possible and populate them with a constant
# integer. We expect that during the test we will always be able to read
# constant integers regardless of how the database objects get modified
#
$tables = {
rows => [10, 11],
primary_key => [ undef ]
};
$fields = {
types => [ 'int' ],
indexes => [ undef, 'key' ]
};
$data = {
numbers => [ '5' ]
}
|