summaryrefslogtreecommitdiff
path: root/sql/structs.h
diff options
context:
space:
mode:
authormonty@mysql.com <>2006-05-03 15:59:17 +0300
committermonty@mysql.com <>2006-05-03 15:59:17 +0300
commit343644dd5dc18b5722700495b7bb365724fef1a9 (patch)
treebe19707bb5edcf9cc7b289bbcb00a51e8771e29c /sql/structs.h
parent19de86dd63e99a052bc1a692a25504260b8ffcac (diff)
downloadmariadb-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/structs.h')
-rw-r--r--sql/structs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/structs.h b/sql/structs.h
index e369d8ed7e8..72237887514 100644
--- a/sql/structs.h
+++ b/sql/structs.h
@@ -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