1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
$tables = { rows => [65536] }; $fields = { types => [ 'int', 'char(255)', 'varchar(255)' ], indexes => [undef, 'key' ], null => [undef, 'not null'], default => [undef, 'default null'], sign => [undef, 'unsigned'], charsets => ['utf8', 'latin1'] }; $data = { numbers => [ undef ], strings => [ 'char(255)' ], }; |