~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$tables = {
        rows => [10],
        partitions => [ undef , 'KEY (pk) PARTITIONS 2' ],
	engines => [ 'Aria', 'MyISAM', 'InnoDB' ]
};

$fields = {
	pk => [ 'integer auto_increment not null' ],
        types => [ 'tinyblob', 'blob', 'mediumblob', 'longblob' ],
 	indexes => [ 'key' , undef ],
 	null => [undef, 'not null']
};

$data = {
        blobs => [ 'null', '', 'letter']
}