diff options
author | unknown <mskold/marty@mysql.com/linux.site> | 2006-12-19 23:20:43 +0100 |
---|---|---|
committer | unknown <mskold/marty@mysql.com/linux.site> | 2006-12-19 23:20:43 +0100 |
commit | d0d7cc86faa9393b88b11dd47c143012a8288743 (patch) | |
tree | 7cd5e738b8657950fb204afe008cec0c0111c484 /include/my_base.h | |
parent | 1e10672496fbce277cab2f38a98476e6c25ee2f5 (diff) | |
download | mariadb-git-d0d7cc86faa9393b88b11dd47c143012a8288743.tar.gz |
bug#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/my_base.h b/include/my_base.h index cf254f5e0d0..9620acedb75 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -96,6 +96,14 @@ enum ha_key_alg { HA_KEY_ALG_FULLTEXT= 4 /* FULLTEXT (MyISAM tables) */ }; + /* Storage media types */ + +enum ha_storage_media { + HA_SM_DEFAULT= 0, /* Not specified (engine default) */ + HA_SM_DISK= 1, /* DISK storage */ + HA_SM_MEMORY= 2 /* MAIN MEMORY storage */ +}; + /* The following is parameter to ha_extra() */ enum ha_extra_function { |