mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
Added support for key_block_size for key and table level (WL#602)
Added support for key_block_size to MyISAM. Simplify interface to 'new Key' to make it easier to add new key options. mysqld option --new is used to define where key options are printed. (In 5.3 we should move all key options to after key part definition to avoid problem with reserved names) Fixed some compiler warnings and a memory leak in ssl
This commit is contained in:
parent
19de86dd63
commit
343644dd5d
39 changed files with 605 additions and 168 deletions
|
|
@ -86,6 +86,7 @@ typedef struct st_key {
|
|||
uint key_parts; /* How many key_parts */
|
||||
uint extra_length;
|
||||
uint usable_key_parts; /* Should normally be = key_parts */
|
||||
uint block_size;
|
||||
enum ha_key_alg algorithm;
|
||||
/*
|
||||
Note that parser is used when the table is opened for use, and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue