summaryrefslogtreecommitdiff
path: root/mysql-test/r/group_by.result
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-01-29 19:22:22 +0200
committermonty@mashka.mysql.fi <>2003-01-29 19:22:22 +0200
commit9e3fd0930570fbc852f494e0ca9ebd41996ee2ac (patch)
treec75b9bfc08d3d793d015a4b05b46c723ec15ce0e /mysql-test/r/group_by.result
parentb025fa8b328ad247ad84c461392002aef04064d4 (diff)
parentf2299ee72f1de7dd3281492405d6fff3049d8f3e (diff)
downloadmariadb-git-9e3fd0930570fbc852f494e0ca9ebd41996ee2ac.tar.gz
merge with 3.23.56 to get patches for --lower-case-table-names and
proper handling of SUM() in some functions.
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r--mysql-test/r/group_by.result18
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result
index 35867cf6532..167b7b8ef1f 100644
--- a/mysql-test/r/group_by.result
+++ b/mysql-test/r/group_by.result
@@ -529,3 +529,21 @@ table type possible_keys key key_len ref rows Extra
t1 ALL NULL NULL NULL NULL 6 Using temporary
t2 ALL a NULL NULL NULL 4 Using where
drop table t1,t2;
+a MAX(b) INTERVAL (MAX(b), 1,3,10,30,39,40,50,60,100,1000)
+1 4 2
+10 43 6
+a MAX(b) CASE MAX(b) when 4 then 4 when 43 then 43 else 0 end
+1 4 4
+10 43 43
+a MAX(b) FIELD(MAX(b), '43', '4', '5')
+1 4 2
+10 43 1
+a MAX(b) CONCAT_WS(MAX(b), '43', '4', '5')
+1 4 434445
+10 43 43434435
+a MAX(b) ELT(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f')
+1 4 d
+10 43 NULL
+a MAX(b) MAKE_SET(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
+1 4 c
+10 43 a,b,d,f