~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to conf/metadata_locking.zz

merge from internal tree

Show diffs side-by-side

added added

removed removed

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