summaryrefslogtreecommitdiff
path: root/mysql-test/t/olap.test
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-04-19 19:00:02 -0700
committerunknown <igor@rurik.mysql.com>2005-04-19 19:00:02 -0700
commit3125fed2a3f627f2d0242c8f63f5c2da741bcf20 (patch)
tree7b0553d2fe54a30e9b5b67415514daa3243cc465 /mysql-test/t/olap.test
parent8b001e2aba159e13339950f8c1cf1e65f0af5662 (diff)
parent6a97b07994f8d67c0f14b3979c932d69452ff94f (diff)
downloadmariadb-git-3125fed2a3f627f2d0242c8f63f5c2da741bcf20.tar.gz
Merge of the fix for bug #9681 4.1->5.0
mysql-test/r/olap.result: Auto merged mysql-test/t/olap.test: Auto merged sql/sql_select.cc: Auto merged
Diffstat (limited to 'mysql-test/t/olap.test')
-rw-r--r--mysql-test/t/olap.test13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/t/olap.test b/mysql-test/t/olap.test
index 6e83968a506..03b26e0b6c6 100644
--- a/mysql-test/t/olap.test
+++ b/mysql-test/t/olap.test
@@ -178,3 +178,16 @@ SELECT a, SUM(b) FROM t1 GROUP BY a WITH ROLLUP LIMIT 1;
SELECT SQL_CALC_FOUND_ROWS a, SUM(b) FROM t1 GROUP BY a WITH ROLLUP LIMIT 1;
DROP TABLE t1;
+
+#
+# Tests for bug #9681: ROLLUP in subquery for derived table wiht
+# a group by field declared as NOT NULL
+#
+
+CREATE TABLE t1 (a int(11) NOT NULL);
+INSERT INTO t1 VALUES (1),(2);
+
+SELECT a, SUM(a) m FROM t1 GROUP BY a WITH ROLLUP;
+SELECT * FROM ( SELECT a, SUM(a) m FROM t1 GROUP BY a WITH ROLLUP ) t2;
+
+DROP TABLE t1;