summaryrefslogtreecommitdiff
path: root/myisam/mi_check.c
diff options
context:
space:
mode:
authorunknown <hf@deer.(none)>2004-02-19 17:22:38 +0400
committerunknown <hf@deer.(none)>2004-02-19 17:22:38 +0400
commit3804200122762f88d9af28851610dc0c6dcbe0e8 (patch)
treee5c8a87ec7a0e38f469d3dfcc0f4f6f4286ae052 /myisam/mi_check.c
parent4ca357b3f7c449cfcc05fec3f9a6ad32fd13eeb9 (diff)
downloadmariadb-git-3804200122762f88d9af28851610dc0c6dcbe0e8.tar.gz
Fix for #2237 and #2490 (analyze and check for RTree keys)
Now checking of the RTree keys works without errors. Worklog entry about appropriate checkup's routine for the RTree added myisam/mi_check.c: HA_SPATIAL checks added mysql-test/r/gis-rtree.result: Appropriate test resutl mysql-test/t/gis-rtree.test: test case
Diffstat (limited to 'myisam/mi_check.c')
-rw-r--r--myisam/mi_check.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/myisam/mi_check.c b/myisam/mi_check.c
index 4f6aa0b46d4..4d29838ecd0 100644
--- a/myisam/mi_check.c
+++ b/myisam/mi_check.c
@@ -409,7 +409,7 @@ int chk_key(MI_CHECK *param, register MI_INFO *info)
if (chk_index(param,info,keyinfo,share->state.key_root[key],info->buff,
&keys, param->key_crc+key,1))
DBUG_RETURN(-1);
- if(!(keyinfo->flag & HA_FULLTEXT))
+ if(!(keyinfo->flag & (HA_FULLTEXT | HA_SPATIAL)))
{
if (keys != info->state->records)
{
@@ -558,6 +558,10 @@ static int chk_index(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo,
DBUG_ENTER("chk_index");
DBUG_DUMP("buff",(byte*) buff,mi_getint(buff));
+ /* TODO: implement appropriate check for RTree keys */
+ if (keyinfo->flag & HA_SPATIAL)
+ DBUG_RETURN(0);
+
if (!(temp_buff=(uchar*) my_alloca((uint) keyinfo->block_length)))
{
mi_check_print_error(param,"Not enough memory for keyblock");
@@ -1073,7 +1077,7 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
for (key=0 ; key < info->s->base.keys; key++)
{
if (key_checksum[key] != param->key_crc[key] &&
- !(info->s->keyinfo[key].flag & HA_FULLTEXT))
+ !(info->s->keyinfo[key].flag & (HA_FULLTEXT | HA_SPATIAL)))
{
mi_check_print_error(param,"Checksum for key: %2d doesn't match checksum for records",
key+1);