summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-09-08 15:45:31 -0700
committerunknown <igor@rurik.mysql.com>2005-09-08 15:45:31 -0700
commit2eaee052bc8456d315b58ce776f6f7c3b24a893f (patch)
tree26470107142ea65b4924efe53f57d9fd1dad688b
parent1e5069703abf8e0ae5df69a811cdd38633f5291d (diff)
downloadmariadb-git-2eaee052bc8456d315b58ce776f6f7c3b24a893f.tar.gz
olap.result, olap.test:
Added a test case with VIEW for bug #12885. mysql-test/t/olap.test: Added a test case with VIEW for bug #12885. mysql-test/r/olap.result: Added a test case with VIEW for bug #12885.
-rw-r--r--mysql-test/r/olap.result16
-rw-r--r--mysql-test/t/olap.test19
2 files changed, 33 insertions, 2 deletions
diff --git a/mysql-test/r/olap.result b/mysql-test/r/olap.result
index b5b43cba3c7..df0ee09ea8e 100644
--- a/mysql-test/r/olap.result
+++ b/mysql-test/r/olap.result
@@ -602,3 +602,19 @@ id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 10 Using filesort
DROP VIEW v1;
DROP TABLE t1;
+CREATE TABLE t1 (a int(11) NOT NULL);
+INSERT INTO t1 VALUES (1),(2);
+CREATE VIEW v1 AS
+SELECT a, LENGTH(a), COUNT(*) FROM t1 GROUP BY a WITH ROLLUP;
+DESC v1;
+Field Type Null Key Default Extra
+a bigint(11) YES NULL
+LENGTH(a) bigint(10) YES NULL
+COUNT(*) bigint(21) NO 0
+SELECT * FROM v1;
+a LENGTH(a) COUNT(*)
+1 1 1
+2 1 1
+NULL NULL 2
+DROP VIEW v1;
+DROP TABLE t1;
diff --git a/mysql-test/t/olap.test b/mysql-test/t/olap.test
index 98dc3e5056b..3a6a5e46f37 100644
--- a/mysql-test/t/olap.test
+++ b/mysql-test/t/olap.test
@@ -263,8 +263,8 @@ SELECT a, b, a AS c, COUNT(*) AS count FROM t1 GROUP BY a, b, c WITH ROLLUP;
DROP TABLE t1;
#
-# Bug #11885: derived table specified by a subquery with
-# ROLLUP over expressions on not nullable group by attributes
+# Bug #12885(1): derived table specified by a subquery with
+# ROLLUP over expressions on not nullable group by attributes
#
CREATE TABLE t1 (a int(11) NOT NULL);
@@ -294,4 +294,19 @@ EXPLAIN SELECT type FROM v1 GROUP BY type WITH ROLLUP;
DROP VIEW v1;
DROP TABLE t1;
+#
+# Bug #12885(2): view specified by a subquery with
+# ROLLUP over expressions on not nullable group by attributes
+#
+
+CREATE TABLE t1 (a int(11) NOT NULL);
+INSERT INTO t1 VALUES (1),(2);
+CREATE VIEW v1 AS
+ SELECT a, LENGTH(a), COUNT(*) FROM t1 GROUP BY a WITH ROLLUP;
+
+DESC v1;
+SELECT * FROM v1;
+
+DROP VIEW v1;
+DROP TABLE t1;