Merge gshchepa@bk-internal.mysql.com:/users/gshchepa/5.1-opt-31075
into gleb.loc:/home/uchum/work/bk/5.1-opt
This commit is contained in:
commit
4f6658967b
@ -564,4 +564,9 @@ explain select f2 from t2 where f2 in (1,'b');
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 SIMPLE t2 index t2f2 t2f2 5 NULL 3 Using where; Using index
|
||||
drop table t1, t2;
|
||||
create table t1 (a time, key(a));
|
||||
insert into t1 values (),(),(),(),(),(),(),(),(),();
|
||||
select a from t1 where a not in (a,a,a) group by a;
|
||||
a
|
||||
drop table t1;
|
||||
End of 5.1 tests
|
||||
|
@ -408,5 +408,13 @@ select f2 from t2 where f2 in (1,'b');
|
||||
explain select f2 from t2 where f2 in (1,'b');
|
||||
drop table t1, t2;
|
||||
|
||||
#
|
||||
# Bug #31075: crash in get_func_mm_tree
|
||||
#
|
||||
|
||||
create table t1 (a time, key(a));
|
||||
insert into t1 values (),(),(),(),(),(),(),(),(),();
|
||||
select a from t1 where a not in (a,a,a) group by a;
|
||||
drop table t1;
|
||||
|
||||
--echo End of 5.1 tests
|
||||
|
@ -5053,7 +5053,7 @@ static SEL_TREE *get_func_mm_tree(RANGE_OPT_PARAM *param, Item_func *cond_func,
|
||||
|
||||
if (inv)
|
||||
{
|
||||
if (func->array->result_type() != ROW_RESULT)
|
||||
if (func->array && func->array->result_type() != ROW_RESULT)
|
||||
{
|
||||
/*
|
||||
We get here for conditions in form "t.key NOT IN (c1, c2, ...)",
|
||||
|
Loading…
x
Reference in New Issue
Block a user