diff options
author | monty@mashka.mysql.fi <> | 2003-07-06 19:09:57 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-07-06 19:09:57 +0300 |
commit | ebcc7b5a4fca8fb8706e2dd8e5ae79c0d0fd5ca7 (patch) | |
tree | 48933b768c9d8efcf591c87e96b857a99e6977bb /include/my_sys.h | |
parent | bad00c38df725be6150dced836294f45d7bf35df (diff) | |
download | mariadb-git-ebcc7b5a4fca8fb8706e2dd8e5ae79c0d0fd5ca7.tar.gz |
Support for variables with components
Added framework to create/drop and manager buffers for multiple key caches
Diffstat (limited to 'include/my_sys.h')
-rw-r--r-- | include/my_sys.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/my_sys.h b/include/my_sys.h index 48ebdc22f37..7ea9f63a50f 100644 --- a/include/my_sys.h +++ b/include/my_sys.h @@ -501,6 +501,12 @@ my_off_t my_b_append_tell(IO_CACHE* info); #define my_b_bytes_in_cache(info) (uint) (*(info)->current_end - \ *(info)->current_pos) +/* key_cache_variables */ +typedef struct st_keycache +{ + ulonglong size; +} KEY_CACHE; + #include <my_alloc.h> /* Prototypes for mysys and my_func functions */ |