diff options
author | pem@mysql.com <> | 2003-10-22 16:10:22 +0200 |
---|---|---|
committer | pem@mysql.com <> | 2003-10-22 16:10:22 +0200 |
commit | 337238b78ac9f131b3082f987c812216e6247dad (patch) | |
tree | 162a59c221392dfbcde183e7fdd33da1159e8bd9 /mysql-test/r/distinct.result | |
parent | 2918e5d529502f0c10c720f1360ab39d6d83bb48 (diff) | |
parent | 70ea50366231ac471a894ab4e91f2322cdacb796 (diff) | |
download | mariadb-git-337238b78ac9f131b3082f987c812216e6247dad.tar.gz |
Merging 4.1->5.0
Diffstat (limited to 'mysql-test/r/distinct.result')
-rw-r--r-- | mysql-test/r/distinct.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/distinct.result b/mysql-test/r/distinct.result index d9beed25edf..1f1850183b7 100644 --- a/mysql-test/r/distinct.result +++ b/mysql-test/r/distinct.result @@ -457,10 +457,10 @@ drop table t1,t2; CREATE TABLE t1 ( html varchar(5) default NULL, rin int(11) default '0', -out int(11) default '0' +rout 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; +SELECT DISTINCT html,SUM(rout)/(SUM(rin)+1) as 'prod' FROM t1 GROUP BY rin; html prod 1 0.00 drop table t1; |