diff options
author | monty@mysql.com <> | 2006-05-03 15:59:17 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2006-05-03 15:59:17 +0300 |
commit | 343644dd5dc18b5722700495b7bb365724fef1a9 (patch) | |
tree | be19707bb5edcf9cc7b289bbcb00a51e8771e29c /sql/lex.h | |
parent | 19de86dd63e99a052bc1a692a25504260b8ffcac (diff) | |
download | mariadb-git-343644dd5dc18b5722700495b7bb365724fef1a9.tar.gz |
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
Diffstat (limited to 'sql/lex.h')
-rw-r--r-- | sql/lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h index 171f7a48980..555a68dc388 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -275,6 +275,7 @@ static SYMBOL symbols[] = { { "JOIN", SYM(JOIN_SYM)}, { "KEY", SYM(KEY_SYM)}, { "KEYS", SYM(KEYS)}, + { "KEY_BLOCK_SIZE", SYM(KEY_BLOCK_SIZE)}, { "KILL", SYM(KILL_SYM)}, { "LANGUAGE", SYM(LANGUAGE_SYM)}, { "LAST", SYM(LAST_SYM)}, |