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

user_var.result:

Corrected test case result for the bug#28494.
item_func.h, item_func.cc:
  Corrected function names after fix for the bug#28494.
This commit is contained in:
evgen@moonbone.local
2007-06-03 15:56:48 +04:00
parent 7dbe9d3318
commit 88147d5cfe
3 changed files with 10 additions and 10 deletions

View File

@ -336,16 +336,16 @@ select @a:=f1, count(f1) from t1 group by 1 asc;
4 1
select @a:=f2, count(f2) from t1 group by 1 desc;
@a:=f2 count(f2)
a 4
b 1
c 2
d 1
c 2
b 1
a 4
select @a:=f3, count(f3) from t1 group by 1 desc;
@a:=f3 count(f3)
1.5 4
2.5 1
3.5 2
4.5 1
3.5 2
2.5 1
1.5 4
select @a:=f4, count(f4) from t1 group by 1 desc;
@a:=f4 count(f4)
4.6 1