Commit ca035a76 authored by unknown's avatar unknown

Merge stella.local:/home2/mydev/mysql-5.1-ateam

into  stella.local:/home2/mydev/mysql-5.1-axmrg


sql/item_func.cc:
  Auto merged
parents bd953d95 6fcc984e
...@@ -353,3 +353,14 @@ select @a:=f4, count(f4) from t1 group by 1 desc; ...@@ -353,3 +353,14 @@ select @a:=f4, count(f4) from t1 group by 1 desc;
2.6 1 2.6 1
1.6 4 1.6 4
drop table t1; drop table t1;
create table t1(a int);
insert into t1 values(5),(4),(4),(3),(2),(2),(2),(1);
set @rownum := 0;
set @rank := 0;
set @prev_score := NULL;
select @rownum := @rownum + 1 as row,
@rank := IF(@prev_score!=a, @rownum, @rank) as rank,
@prev_score := a as score
from t1 order by score desc;
drop table t1;
End of 5.1 tests
...@@ -237,3 +237,24 @@ select @a:=f2, count(f2) from t1 group by 1 desc; ...@@ -237,3 +237,24 @@ select @a:=f2, count(f2) from t1 group by 1 desc;
select @a:=f3, count(f3) from t1 group by 1 desc; select @a:=f3, count(f3) from t1 group by 1 desc;
select @a:=f4, count(f4) from t1 group by 1 desc; select @a:=f4, count(f4) from t1 group by 1 desc;
drop table t1; drop table t1;
#
# Bug #32260: User variables in query cause server crash
#
create table t1(a int);
insert into t1 values(5),(4),(4),(3),(2),(2),(2),(1);
set @rownum := 0;
set @rank := 0;
set @prev_score := NULL;
# Disable the result log as we assign a value to a user variable in one part
# of a statement and use the same variable in other part of the same statement,
# so we can get unexpected results.
--disable_result_log
select @rownum := @rownum + 1 as row,
@rank := IF(@prev_score!=a, @rownum, @rank) as rank,
@prev_score := a as score
from t1 order by score desc;
--enable_result_log
drop table t1;
--echo End of 5.1 tests
...@@ -3843,7 +3843,8 @@ Item_func_set_user_var::fix_length_and_dec() ...@@ -3843,7 +3843,8 @@ Item_func_set_user_var::fix_length_and_dec()
bool Item_func_set_user_var::register_field_in_read_map(uchar *arg) bool Item_func_set_user_var::register_field_in_read_map(uchar *arg)
{ {
TABLE *table= (TABLE *) arg; TABLE *table= (TABLE *) arg;
if (result_field->table == table || !table) if (result_field &&
(!table || result_field->table == table))
bitmap_set_bit(result_field->table->read_set, result_field->field_index); bitmap_set_bit(result_field->table->read_set, result_field->field_index);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment