diff options
author | Mattias Jonsson <mattias.jonsson@sun.com> | 2008-10-01 12:14:55 +0200 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@sun.com> | 2008-10-01 12:14:55 +0200 |
commit | 22e0319620e3c9d2d2a552a8bc68e8233f06e544 (patch) | |
tree | 9758fa11760f3312e5b60eba313d85008667d54d /sql/table.h | |
parent | 6816cf6a6518bb5108fe7907f71e58be994db6e5 (diff) | |
parent | be63f0af4f46048eda18bd66300949a810f0fd1e (diff) | |
download | mariadb-git-22e0319620e3c9d2d2a552a8bc68e8233f06e544.tar.gz |
merge
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index d21a9eefae8..fc172dd2f19 100644 --- a/sql/table.h +++ b/sql/table.h @@ -410,6 +410,7 @@ typedef struct st_table_share int cached_row_logging_check; #ifdef WITH_PARTITION_STORAGE_ENGINE + /** @todo: Move into *ha_data for partitioning */ bool auto_partitioned; const char *partition_info; uint partition_info_len; @@ -419,6 +420,9 @@ typedef struct st_table_share handlerton *default_part_db_type; #endif + /** place to store storage engine specific data */ + void *ha_data; + /* Set share's table cache key and update its db and table name appropriately. |