mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge rkalimullin@work.mysql.com:/home/bk/mysql-4.1
into mysql.r18.ru:/usr/home/ram/mysql-4.1.monty1 sql/opt_range.cc: Auto merged
This commit is contained in:
@ -932,7 +932,7 @@ get_mm_leaf(PARAM *param, Field *field, KEY_PART *key_part,
|
||||
String tmp(buff1,sizeof(buff1),default_charset_info),*res;
|
||||
uint length,offset,min_length,max_length;
|
||||
|
||||
if (!field->optimize_range((uint) key_part->key))
|
||||
if (!field->optimize_range(param->real_keynr[key_part->key]))
|
||||
DBUG_RETURN(0); // Can't optimize this
|
||||
if (!(res= value->val_str(&tmp)))
|
||||
DBUG_RETURN(&null_element);
|
||||
@ -1002,7 +1002,7 @@ get_mm_leaf(PARAM *param, Field *field, KEY_PART *key_part,
|
||||
DBUG_RETURN(tree);
|
||||
}
|
||||
|
||||
if (!field->optimize_range((uint) key_part->key) &&
|
||||
if (!field->optimize_range(param->real_keynr[key_part->key]) &&
|
||||
type != Item_func::EQ_FUNC &&
|
||||
type != Item_func::EQUAL_FUNC)
|
||||
DBUG_RETURN(0); // Can't optimize this
|
||||
|
Reference in New Issue
Block a user