diff options
author | unknown <bell@sanja.is.com.ua> | 2003-01-29 10:38:56 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-01-29 10:38:56 +0200 |
commit | cec5bc1de7aa1107ec988601de6a3990c6397446 (patch) | |
tree | 6a44df5398a1db055b33e2b93ad62a7e8693ceda /mysql-test/r/group_by.result | |
parent | 72455300841e1b00c312c3a03ace3bcbd57a4d2f (diff) | |
download | mariadb-git-cec5bc1de7aa1107ec988601de6a3990c6397446.tar.gz |
fixed functions to be able work with group function as argument
made bisone 1.75 compatible code
mysql-test/r/group_by.result:
test of function with agregate function inside
mysql-test/t/group_by.test:
test of function with agregate function inside
sql/item_cmpfunc.cc:
fixed functions to be able work with group function as argument
sql/item_cmpfunc.h:
fixed functions to be able work with group function as argument
sql/item_func.cc:
fixed functions to be able work with group function as argument
sql/item_func.h:
fixed functions to be able work with group function as argument
sql/item_strfunc.cc:
fixed functions to be able work with group function as argument
sql/item_strfunc.h:
fixed functions to be able work with group function as argument
sql/sql_yacc.yy:
made bisone 1.75 compatible code
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index 3bd3eeb5efd..113f8325685 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -110,3 +110,21 @@ a count(*) NULL 9 3 b 1 +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 |