diff options
author | gkodinov@dl145s.mysql.com <> | 2006-10-20 11:02:56 +0200 |
---|---|---|
committer | gkodinov@dl145s.mysql.com <> | 2006-10-20 11:02:56 +0200 |
commit | a93cc1b70b503c7272b3507d7d8fd4650cb3a2dd (patch) | |
tree | f61c971fc2f173b68efd04f3f22adc538934ec92 /myisam | |
parent | afefa5d42f54028a69e11fd155a0faa4fcba7399 (diff) | |
parent | c77fae407b0ed423daace82044fc034f3c6c43ff (diff) | |
download | mariadb-git-a93cc1b70b503c7272b3507d7d8fd4650cb3a2dd.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0
into dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/mi_range.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/myisam/mi_range.c b/myisam/mi_range.c index e78f3b11625..a28aed81aec 100644 --- a/myisam/mi_range.c +++ b/myisam/mi_range.c @@ -71,6 +71,21 @@ ha_rows mi_records_in_range(MI_INFO *info, int inx, key_range *min_key, uchar * key_buff; uint start_key_len; + /* + The problem is that the optimizer doesn't support + RTree keys properly at the moment. + Hope this will be fixed some day. + But now NULL in the min_key means that we + didn't make the task for the RTree key + and expect BTree functionality from it. + As it's not able to handle such request + we return the error. + */ + if (!min_key) + { + res= HA_POS_ERROR; + break; + } key_buff= info->lastkey+info->s->base.max_key_length; start_key_len= _mi_pack_key(info,inx, key_buff, (uchar*) min_key->key, min_key->length, |