~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to conf/in.zz

merge from internal tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
$tables = {
 
2
        rows => [100],
 
3
        primary_key => [ undef ]
 
4
};
 
5
 
 
6
$fields = {
 
7
        types => [ 'int' ],
 
8
        indexes => [ 'key' ]
 
9
};
 
10
 
 
11
$data = {
 
12
        numbers => [ '5' ]
 
13
}
 
14