summaryrefslogtreecommitdiff
path: root/mysql-test/r/sum_distinct-big.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2013-01-21 11:47:45 -0800
committerIgor Babaev <igor@askmonty.org>2013-01-21 11:47:45 -0800
commitfade3647ecb18a90d9c89a924a076d714ec45888 (patch)
tree1cdd64f9b996aa56df1993d3ea319075124ec5c4 /mysql-test/r/sum_distinct-big.result
parent2e11ca36f28133c18b72351d176ee2fd7fcbc465 (diff)
downloadmariadb-git-fade3647ecb18a90d9c89a924a076d714ec45888.tar.gz
Fixed bug mdev-4063 (bug #56927).
This bug could result in returning 0 for the expressions of the form <aggregate_function>(distinct field) when the system variable max_heap_table_size was set to a small enough number. It happened because the method Unique::walk() did not support the case when more than one pass was needed to merge the trees of distinct values saved in an external file. Backported a fix in grant_lowercase.test from mariadb 5.5.
Diffstat (limited to 'mysql-test/r/sum_distinct-big.result')
-rw-r--r--mysql-test/r/sum_distinct-big.result15
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/sum_distinct-big.result b/mysql-test/r/sum_distinct-big.result
index 9b55d59ab91..d4933b31f80 100644
--- a/mysql-test/r/sum_distinct-big.result
+++ b/mysql-test/r/sum_distinct-big.result
@@ -103,5 +103,20 @@ sm
10323810
10325070
10326330
+#
+# Bug mdev-4063: SUM(DISTINCT...) with small'max_heap_table_size
+# (bug #56927)
+#
+SET max_heap_table_size=default;
+INSERT INTO t1 SELECT id+16384 FROM t1;
+DELETE FROM t2;
+INSERT INTO t2 SELECT id FROM t1 ORDER BY id*rand();
+SELECT SUM(DISTINCT id) sm FROM t2;
+sm
+536887296
+SET max_heap_table_size=16384;
+SELECT SUM(DISTINCT id) sm FROM t2;
+sm
+536887296
DROP TABLE t1;
DROP TABLE t2;