Commit a24a38df authored by igor@olga.mysql.com's avatar igor@olga.mysql.com

Post-merge fix.

parent d460dc70
......@@ -319,7 +319,7 @@ SHOW COUNT(*) ERRORS;
1
create table t1(f1 int);
insert into t1 values(1),(1),(2);
select @a:=f1, count(f1) from t1 group by 1;
select @a:=f1, count(f1) from t1 group by 1 order by 1;
@a:=f1 count(f1)
1 2
2 1
......
......@@ -228,5 +228,5 @@ SHOW COUNT(*) ERRORS;
#
create table t1(f1 int);
insert into t1 values(1),(1),(2);
select @a:=f1, count(f1) from t1 group by 1;
select @a:=f1, count(f1) from t1 group by 1 order by 1;
drop table t1;
......@@ -1656,7 +1656,7 @@ int multi_update::do_updates(bool from_send_error)
{
if((local_error=
tbl->file->rnd_pos(tbl->record[0],
(byte *) tmp_table->field[field_num]->ptr)))
(uchar *) tmp_table->field[field_num]->ptr)))
goto err;
field_num++;
} while((tbl= check_opt_it++));
......
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