1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Post-merge fix.

This commit is contained in:
igor@olga.mysql.com
2007-05-31 23:31:59 -07:00
parent d460dc700a
commit a24a38df75
3 changed files with 3 additions and 3 deletions

View File

@ -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