diff options
author | ramil/ram@ramil.myoffice.izhnet.ru <> | 2007-02-28 14:37:09 +0400 |
---|---|---|
committer | ramil/ram@ramil.myoffice.izhnet.ru <> | 2007-02-28 14:37:09 +0400 |
commit | ae7d65569d3463a53c153da92c52034b00a00ff6 (patch) | |
tree | 68f1972614918a877ca50ffa338c7c00a440a336 /mysql-test/r/func_group.result | |
parent | da3c2d387fbcd48239848e269a875081dfdb3656 (diff) | |
parent | fe8b1495f3a207e822524cda8a8f57ea11de4511 (diff) | |
download | mariadb-git-ae7d65569d3463a53c153da92c52034b00a00ff6.tar.gz |
Merge mysql.com:/home/ram/work/b25834/b25834.5.0
into mysql.com:/home/ram/work/b25834/b25834.5.1
Diffstat (limited to 'mysql-test/r/func_group.result')
-rw-r--r-- | mysql-test/r/func_group.result | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/mysql-test/r/func_group.result b/mysql-test/r/func_group.result index 64324b57fe3..972bb99d56f 100644 --- a/mysql-test/r/func_group.result +++ b/mysql-test/r/func_group.result @@ -1171,11 +1171,11 @@ i count(*) std(s1/s2) 1 4 0.00000000 2 4 0.00000000 3 4 0.00000000 -select i, count(*), std(o1/o2) from bug22555 group by i order by i; -i count(*) std(o1/o2) -1 4 0 -2 4 0 -3 4 0 +select i, count(*), round(std(o1/o2), 16) from bug22555 group by i order by i; +i count(*) round(std(o1/o2), 16) +1 4 0.0000000000000000 +2 4 0.0000000000000000 +3 4 0.0000000000000000 select i, count(*), std(e1/e2) from bug22555 group by i order by i; i count(*) std(e1/e2) 1 4 0.00000000 @@ -1197,11 +1197,11 @@ i count(*) std(s1/s2) 1 4 0.000000000000000000000000000000 2 4 0.000000000000000000000000000000 3 4 0.000000000000000000000000000000 -select i, count(*), std(o1/o2) from bug22555 group by i order by i; -i count(*) std(o1/o2) -1 4 0 -2 4 0 -3 4 0 +select i, count(*), round(std(o1/o2), 16) from bug22555 group by i order by i; +i count(*) round(std(o1/o2), 16) +1 4 0.0000000000000000 +2 4 0.0000000000000000 +3 4 0.0000000000000000 select i, count(*), std(e1/e2) from bug22555 group by i order by i; i count(*) std(e1/e2) 1 4 0.000000000000000000000000000000 @@ -1222,11 +1222,11 @@ i count(*) std(s1/s2) 1 4 0.000000000000000000000000000000 2 4 0.000000000000000000000000000000 3 4 0.000000000000000000000000000000 -select i, count(*), std(o1/o2) from bug22555 group by i order by i; -i count(*) std(o1/o2) -1 4 0 -2 4 0 -3 4 0 +select i, count(*), round(std(o1/o2), 16) from bug22555 group by i order by i; +i count(*) round(std(o1/o2), 16) +1 4 0.0000000000000000 +2 4 0.0000000000000000 +3 4 0.0000000000000000 select i, count(*), std(e1/e2) from bug22555 group by i order by i; i count(*) std(e1/e2) 1 4 0.000000000000000000000000000000 |