mirror of
https://github.com/MariaDB/server.git
synced 2025-11-16 20:23:18 +03:00
Post-merge fix.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user