summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwax@kishkin.ru <>2003-04-02 21:47:22 +0600
committerwax@kishkin.ru <>2003-04-02 21:47:22 +0600
commitb5af8d771edccea2335d530a4fd08b45275f744c (patch)
tree19429fead65b22c01732bf589c9dadfcc01c9bb7
parent9abea0aa2f5e1c236bad939e2229334ea4218b7d (diff)
downloadmariadb-git-b5af8d771edccea2335d530a4fd08b45275f744c.tar.gz
correct code of warning of group_concat
-rw-r--r--mysql-test/r/func_gconcat.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result
index 840e2dc2afb..a9a7b85f96d 100644
--- a/mysql-test/r/func_gconcat.result
+++ b/mysql-test/r/func_gconcat.result
@@ -150,10 +150,10 @@ grp group_concat(c)
4
5 NULL
Warnings:
-Warning 1250 1 line(s) was(were) cut by group_concat()
+Warning 1254 1 line(s) was(were) cut by group_concat()
show warnings;
Level Code Message
-Warning 1250 1 line(s) was(were) cut by group_concat()
+Warning 1254 1 line(s) was(were) cut by group_concat()
select group_concat(sum(a)) from t1 group by grp;
Invalid use of group function
select grp,group_concat(c order by 2) from t1 group by grp;