diff options
author | unknown <monty@hundin.mysql.fi> | 2002-04-12 22:23:46 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-04-12 22:23:46 +0300 |
commit | 54373c16f8435db653ffbad55466e457eb816976 (patch) | |
tree | 1963a820669fcba30285c54b3dfd198db27c4cc0 /include | |
parent | 3a9fa2ac8a655b5d47a6d78919863959b1caa13a (diff) | |
parent | caf41c9e4375357fa03e0583cf675a39172078d8 (diff) | |
download | mariadb-git-54373c16f8435db653ffbad55466e457eb816976.tar.gz |
Merge work:/home/bk/mysql-4.0 into hundin.mysql.fi:/my/bk/mysql-4.0
Docs/manual.texi:
Auto merged
Diffstat (limited to 'include')
-rw-r--r-- | include/my_base.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/my_base.h b/include/my_base.h index 68f33147145..ae8fc2204d5 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -67,9 +67,11 @@ enum ha_rkey_function { /* Key algorithm types */ enum ha_key_alg { - HA_KEY_ALG_BTREE=0, /* B-tree, default one */ - HA_KEY_ALG_RTREE=1, /* R-tree, for spatial searches */ - HA_KEY_ALG_HASH=2 /* HASH keys (HEAP tables) */ + HA_KEY_ALG_UNDEF= 0, /* Not specified (old file) */ + HA_KEY_ALG_BTREE= 1, /* B-tree, default one */ + HA_KEY_ALG_RTREE= 2, /* R-tree, for spatial searches */ + HA_KEY_ALG_HASH= 3, /* HASH keys (HEAP tables) */ + HA_KEY_ALG_FULLTEXT= 4 /* FULLTEXT (MyISAM tables) */ }; /* The following is parameter to ha_extra() */ |