summaryrefslogtreecommitdiff
path: root/mysql-test/r/olap.result
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-05-31 05:56:22 -0700
committerunknown <igor@rurik.mysql.com>2005-05-31 05:56:22 -0700
commit1b8a49bd8467f204a5c430274f61b930abc18ab3 (patch)
treef640275cba6d89cf2b1b2ae10e49279447280714 /mysql-test/r/olap.result
parent134f660eaa37a07b5e242686f344105d1423ec90 (diff)
downloadmariadb-git-1b8a49bd8467f204a5c430274f61b930abc18ab3.tar.gz
olap.result:
Fixed bug #10982. item.cc: Fixed bug #10982. In the function Item_ref::val_decimal by mistake the method Item_ref::val_decimal was used instead of Item_ref::val_decimal_result. sql/item.cc: Fixed bug #10982. In the function Item_ref::val_decimal by mistake the method Item_ref::val_decimal was used instead of Item_ref::val_decimal_result. mysql-test/r/olap.result: Fixed bug #10982.
Diffstat (limited to 'mysql-test/r/olap.result')
-rw-r--r--mysql-test/r/olap.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/olap.result b/mysql-test/r/olap.result
index f3324838ef7..5ba2bc80484 100644
--- a/mysql-test/r/olap.result
+++ b/mysql-test/r/olap.result
@@ -503,7 +503,7 @@ a+1
NULL
SELECT a+SUM(a) FROM t1 GROUP BY a WITH ROLLUP;
a+SUM(a)
-3
+2
4
NULL
SELECT a, a+1 as b FROM t1 GROUP BY a WITH ROLLUP HAVING b > 2;