mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Testcase for #674 added
This commit is contained in:
@ -26,3 +26,13 @@ ORDER BY link;
|
||||
key_link_id link
|
||||
NULL NULL
|
||||
drop table t1,t2;
|
||||
CREATE TABLE t1 (
|
||||
html varchar(5) default NULL,
|
||||
rin int(11) default '0',
|
||||
out int(11) default '0'
|
||||
) TYPE=MyISAM;
|
||||
INSERT INTO t1 VALUES ('1',1,0);
|
||||
SELECT DISTINCT html,SUM(out)/(SUM(rin)+1) as 'prod' FROM t1 GROUP BY rin;
|
||||
html prod
|
||||
1 0.00
|
||||
drop table t1;
|
||||
|
@ -29,3 +29,18 @@ GROUP BY t1.id
|
||||
ORDER BY link;
|
||||
|
||||
drop table t1,t2;
|
||||
|
||||
#
|
||||
# test case for #674
|
||||
#
|
||||
CREATE TABLE t1 (
|
||||
html varchar(5) default NULL,
|
||||
rin int(11) default '0',
|
||||
out int(11) default '0'
|
||||
) TYPE=MyISAM;
|
||||
|
||||
INSERT INTO t1 VALUES ('1',1,0);
|
||||
|
||||
SELECT DISTINCT html,SUM(out)/(SUM(rin)+1) as 'prod' FROM t1 GROUP BY rin;
|
||||
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user